Click or drag to resize

ProcessQueue<T> .CreateAsynchronousQueue(ProcessQueue<T> .ProcessItemsFunctionSignature) Method

Creates a new asynchronous, bulk item ProcessQueue<T> with the default settings: ProcessInterval = 100, MaximumThreads = 5, ProcessTimeout = Infinite, RequeueOnTimeout = False, RequeueOnException = False.

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.241-beta+912389e96d98840d2a999d490420db618dcbe4c6
Syntax
public static ProcessQueue<T> CreateAsynchronousQueue(
	ProcessQueue<T> .ProcessItemsFunctionSignature processItemsFunction
)
View Source

Parameters

processItemsFunction  ProcessQueue<T>.ProcessItemsFunctionSignature
Delegate that defines a method to process multiple items at once.

Return Value

ProcessQueue<T>
A ProcessQueue object based on type T.
See Also