Click or drag to resize

ProcessQueue<T> .CreateSynchronousQueue(ProcessQueue<T> .ProcessItemFunctionSignature) Method

Creates a new synchronous ProcessQueue<T> (i.e., single process thread) with the default settings: ProcessInterval = 100, ProcessTimeout = Infinite, RequeueOnTimeout = False, RequeueOnException = False.

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.245-beta+94213ae9d4d0aa7a2c48e5398b12d267b99f868a
Syntax
public static ProcessQueue<T> CreateSynchronousQueue(
	ProcessQueue<T> .ProcessItemFunctionSignature processItemFunction
)
View Source

Parameters

processItemFunction  ProcessQueue<T>.ProcessItemFunctionSignature
Delegate that processes one item at a time.

Return Value

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