QueueThreadingMode Enumeration

Enumeration of possible ProcessQueueT threading modes.

Definition

Namespace: Gemstone.Threading.Collections
Assembly: Gemstone.Threading (in Gemstone.Threading.dll) Version: 1.0.138 -- Release Build+45b5271a2dafa59bb75ccbb6019faabf2c5f392a
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