Enqueued Event

MNG Profiler

MNG.Direct Documentation


Enqueued Event
Event that occurs whenever the user enqueues and item.
Syntax
'Declaration
 
Public Event Enqueued As SignalConcurrentQueueHandler
'Usage
 
Dim instance As SignalConcurrentQueue(Of T)
Dim handler As SignalConcurrentQueueHandler
 
AddHandler instance.Enqueued, handler
public event SignalConcurrentQueueHandler Enqueued
public:
event SignalConcurrentQueueHandler^ Enqueued
Event Data

The event handler receives an argument of type SignalConcurrentQueueEventArgs containing data related to this event. The following SignalConcurrentQueueEventArgs properties provide information specific to this event.

PropertyDescription
Object that has been enqueued or dequeued.  
Indicate whether the operation the event was raised for succeeded or not.  
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also