Enqueue Method

MNG Profiler

MNG.Direct Documentation


An object that awaits to be processed from the queue.
Enqueue Method
Adds an item to the end of the queue.
Syntax
'Declaration
 
Public Overridable Sub Enqueue( _
   ByVal item As T _
) 
'Usage
 
Dim instance As SignalConcurrentQueue(Of T)
Dim item As T
 
instance.Enqueue(item)
public virtual void Enqueue( 
   T item
)
public:
virtual void Enqueue( 
   T^ item
) 

Parameters

item
An object that awaits to be processed from the queue.
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