QueueThreadingMode Enumeration
Namespace: Gemstone.Threading.CollectionsAssembly: Gemstone.Threading (in Gemstone.Threading.dll) Version: 1.0.158 -- Release Build+5f840a50b8123565ea38e0c1d6c00b5650022b4a
public enum QueueThreadingMode
Public Enumeration QueueThreadingMode
public enum class QueueThreadingMode
Gemstone.Threading.Collections.QueueThreadingMode = function();
Gemstone.Threading.Collections.QueueThreadingMode.createEnum('Gemstone.Threading.Collections.QueueThreadingMode', false);
| Asynchronous | 0 |
Processes several items in the ProcessQueueT at once on different threads, where processing order is not important.
|
| Synchronous | 1 |
Processes items in the ProcessQueueT one at a time on a single thread, where processing order is important.
|