ProcessQueueTCreateAsynchronousQueue(ProcessQueueTProcessItemFunctionSignature) Method

Creates a new asynchronous ProcessQueueT with the default settings: ProcessInterval = 100, MaximumThreads = 5, ProcessTimeout = Infinite, RequeueOnTimeout = False, RequeueOnException = False.

Definition

Namespace: Gemstone.Threading.Collections
Assembly: Gemstone.Threading (in Gemstone.Threading.dll) Version: 1.0.176 -- Release Build+9c922925034f0ac4a6f4aedc5071170fc0c71455
public static ProcessQueue<T> CreateAsynchronousQueue(
	ProcessQueueTProcessItemFunctionSignature processItemFunction
)

Parameters

processItemFunction  ProcessQueueTProcessItemFunctionSignature
Delegate that processes one item at a time.

Return Value

ProcessQueueT
A ProcessQueue object based on type T.

See Also