QueueThreadingMode Enumeration

Enumeration of possible ProcessQueueT threading modes.

Definition

Namespace: Gemstone.Threading.Collections
Assembly: Gemstone.Threading (in Gemstone.Threading.dll) Version: 1.0.128 -- Release Build+d4a9a653be1def5888b9be91bb1825c8655f3529
public enum QueueThreadingMode

Members

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