Click or drag to resize

ProcessQueueT(ProcessQueueTProcessItemFunctionSignature, ProcessQueueTCanProcessItemFunctionSignature, Double, Int32, Int32, Boolean, Boolean) Constructor

Creates a ProcessQueueT based on the generic List(Of T) class.

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.181-beta
Syntax
public ProcessQueue(
	ProcessQueueTProcessItemFunctionSignature processItemFunction,
	ProcessQueueTCanProcessItemFunctionSignature canProcessItemFunction = null,
	double processInterval = 100,
	int maximumThreads = 5,
	int processTimeout = -1,
	bool requeueOnTimeout = false,
	bool requeueOnException = false
)
View Source

Parameters

processItemFunction  ProcessQueueTProcessItemFunctionSignature
Delegate that defines a method to process one item at a time.
canProcessItemFunction  ProcessQueueTCanProcessItemFunctionSignature  (Optional)
Delegate that determines if an item can currently be processed.
processInterval  Double  (Optional)
a Double value which represents the process interval in milliseconds.
maximumThreads  Int32  (Optional)
The maximum number of threads for the queue to use.
processTimeout  Int32  (Optional)
The number of seconds before a process should timeout.
requeueOnTimeout  Boolean  (Optional)
A Boolean value that indicates whether a process should requeue an item on timeout.
requeueOnException  Boolean  (Optional)
A Boolean value that indicates whether a process should requeue after an exception.
See Also