Indicates the time of day that the background task will start. The starting time of the timeslot is expressed as an integer number of minutes past midnight, relative to the local time of the server that is running the background task. For example, a value of 0 indicates midnight, 60 indicates 1 AM, and 1380 indicates 11 PM (that is, 60 times 23), local time. Values from 0 to 1439 are allowed.

StartMinutesPastMidnight is not an absolute Coordinated Universal Time (UTC), so given the same timeslot, different servers can start at different times, depending on their time zones. In distributed environments, you might want to configure specific timeslots at the specific server instance level to isolate index or disposition processing to non-business-critical periods.

Namespace:  FileNet.Api.Admin
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Property StartMinutesPastMidnight As Nullable(Of Integer)
C#
Nullable<int> StartMinutesPastMidnight { get; set; }
Visual C++
property Nullable<int> StartMinutesPastMidnight {
	Nullable<int> get ();
	void set (Nullable<int> value);
}
JavaScript
function get_startMinutesPastMidnight();
function set_startMinutesPastMidnight(value);

ToggleRemarks

ToggleSee Also