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.138 -- Release Build+45b5271a2dafa59bb75ccbb6019faabf2c5f392a
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