Click or drag to resize

QueueThreadingMode Enumeration

Enumeration of possible ProcessQueueT threading modes.

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.218-beta+101eee949414e414795e55a6e73d88938f0177b8
Syntax
public enum QueueThreadingMode
Members
Member nameValueDescription
Asynchronous0 Processes several items in the ProcessQueueT at once on different threads, where processing order is not important.
Synchronous1 Processes items in the ProcessQueueT one at a time on a single thread, where processing order is important.
See Also