Batch selection size used when updating expired requests. An item in the Content Queue is said to expire when its LeaseDuration has been exceeded. Expired items must be updated so they can be retried. Expired queue items are updated in batches, the size of which is dependent on the value of this property.


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

Syntax

Visual Basic (Declaration)
Property ExpiredBatchSelectionSize As Nullable(Of Integer)
C#
Nullable<int> ExpiredBatchSelectionSize { get; set; }
C++
property Nullable<int> ExpiredBatchSelectionSize abstract  {
    Nullable<int> get();
    void set(Nullable<intvalue);
}
J#
/** property */
public Nullable<int> get_ExpiredBatchSelectionSize();

/** property */
public void set_ExpiredBatchSelectionSize(Nullable<intvalue);
JScript
public function get ExpiredBatchSelectionSize() : Nullable<int>

public function set ExpiredBatchSelectionSize(value : Nullable<int>);

Remarks

See Also