Click or drag to resize

QueueProcessingStyle Enumeration

Enumeration of possible ProcessQueue<T> processing styles.

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.239-beta+5928cebde0dd955df84e791f5ea67acbd192773e
Syntax
public enum QueueProcessingStyle
Members
Member nameValueDescription
OneAtATime0 Defines ProcessQueue<T> processing delegate to process only one item at a time.
ManyAtOnce1 Defines ProcessQueue<T> processing delegate to process all currently available items in the ProcessQueue<T>. Items are passed into delegate as an array.
See Also