QueueProcessingStyle Enumeration
Namespace: Gemstone.Threading.CollectionsAssembly: Gemstone.Threading (in Gemstone.Threading.dll) Version: 1.0.165 -- Release Build+f601f11712b0587675df45285a0adf6607cb7bc0
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.
|