public virtual QueueProcessingStyle ProcessingStyle { get; }
Public Overridable ReadOnly Property ProcessingStyle As QueueProcessingStyle
Get
public:
virtual property QueueProcessingStyle ProcessingStyle {
QueueProcessingStyle get ();
}
function get_ProcessingStyle();
OneAtATime, if the ProcessItemFunction is implemented.
ManyAtOnce, if the ProcessItemsFunction is implemented.
The implemented item processing function determines the QueueProcessingStyle.
If the QueueProcessingStyle is ManyAtOnce, all available items in the ProcessQueueT are presented for processing at each processing interval. If you expect items to be processed in the order in which they were received, make sure you use a synchronous ProcessQueueT. Real-time ProcessQueueT are inherently synchronous.