Maximum [un-dispatched] requests allowed in the in-memory queue (to avoid throwing away batches that expire while held in-memory, this number is kept very low by default, but can be increased under certain circumstances, like content migration to a slow device). Note that this limit is not evaluated until there are at least three in-memory pending batches.


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

Syntax

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

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

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

Remarks

See Also