QueueProcessingStyle Enumeration
Namespace: Gemstone.Threading.CollectionsAssembly: Gemstone.Threading (in Gemstone.Threading.dll) Version: 1.0.176 -- Release Build+9c922925034f0ac4a6f4aedc5071170fc0c71455
public enum QueueProcessingStyle
Public Enumeration QueueProcessingStyle
public enum class QueueProcessingStyle
Gemstone.Threading.Collections.QueueProcessingStyle = function();
Gemstone.Threading.Collections.QueueProcessingStyle.createEnum('Gemstone.Threading.Collections.QueueProcessingStyle', false);
| OneAtATime | 0 |
Defines ProcessQueueT processing delegate to process only one item at a time.
|
| ManyAtOnce | 1 |
Defines ProcessQueueT processing delegate to process all currently available items in the ProcessQueueT.
Items are passed into delegate as an array.
|