The number of seconds that must be remaining on the version series row lease to allow a move content operation to proceed.

When the Import Agent assigns a queued import request to a worker thread, the worker thread acquires a lease on the request. The lease is the number of seconds allotted by the Import Dispatcher for the worker thread to complete its work. If the time expires before the work is completed, the dispatcher can assign the request to another thread. A move operation can take considerable time and can potentially exceed the allotted time. Before attempting the move operation, the worker thread determines how much time remains on the lease, and compares that value to the MoveContentLeaseThreshold property value. If the amount of time is greater than the MoveContentLeaseThreshold value, the worker thread proceeds to execute the work. If the amount of time left is less than the MoveContentLeaseThreshold value, the worker thread relinquishes the lease and allows the Import Dispatcher to reassign the request to another thread.

Attention: Do not change the value of this property without guidance from a support representative. Doing so might adversely affect system performance.

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

ToggleSyntax

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

ToggleRemarks

ToggleSee Also