MessageQueue.ReceiveCompleted Event
Assembly: System.Messaging (in system.messaging.dll)
'Declaration Public Event ReceiveCompleted As ReceiveCompletedEventHandler 'Usage Dim instance As MessageQueue Dim handler As ReceiveCompletedEventHandler AddHandler instance.ReceiveCompleted, handler
/** @event */ public void add_ReceiveCompleted (ReceiveCompletedEventHandler value) /** @event */ public void remove_ReceiveCompleted (ReceiveCompletedEventHandler value)
JScript supports the use of events, but not the declaration of new ones.
BeginReceive is used in asynchronous processing to raise the ReceiveCompleted event when a message is available in the queue.
EndReceive is used to complete the operation initiated by a call to BeginReceive and peek the message when the ReceiveCompleted event is raised.
When you create a ReceiveCompletedEventHandler delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate. For more information about event handler delegates, see Events and Delegates.
The following code example creates an event handler named MyReceiveCompleted, attaches it to the ReceiveCompleted event handler delegate, and calls BeginReceive to initiate an asynchronous receive operation on the queue that is located at the path ".\myQueue". When a ReceiveCompleted event is raised, the example receives the message and writes its body to the screen. The example then calls BeginReceive again to initiate a new asynchronous receive operation.
Imports System Imports System.Messaging Public Class MyNewQueue ' ' Provides an entry point into the application. ' ' This example performs asynchronous receive operation ' processing. ' Public Shared Sub Main() ' Create an instance of MessageQueue. Set its formatter. Dim myQueue As New MessageQueue(".\myQueue") myQueue.Formatter = New XmlMessageFormatter(New Type() _ {GetType([String])}) ' Add an event handler for the ReceiveCompleted event. AddHandler myQueue.ReceiveCompleted, AddressOf _ MyReceiveCompleted ' Begin the asynchronous receive operation. myQueue.BeginReceive() ' Do other work on the current thread. Return End Sub 'Main ' ' Provides an event handler for the ReceiveCompleted ' event. ' Private Shared Sub MyReceiveCompleted(ByVal [source] As _ [Object], ByVal asyncResult As ReceiveCompletedEventArgs) ' Connect to the queue. Dim mq As MessageQueue = CType([source], MessageQueue) ' End the asynchronous Receive operation. Dim m As Message = mq.EndReceive(asyncResult.AsyncResult) ' Display message information on the screen. Console.WriteLine(("Message: " + CStr(m.Body))) ' Restart the asynchronous Receive operation. mq.BeginReceive() Return End Sub 'MyReceiveCompleted End Class 'MyNewQueue
package MyProject;
import System.*;
import System.Messaging.*;
/// <summary>
/// Provides a container class for the example.
/// </summary>
public class MyNewQueue
{
//**************************************************
// Provides an entry point into the application.
//
// This example performs asynchronous receive operation
// processing.
//**************************************************
public static void main(String[] args)
{
// Create an instance of MessageQueue. Set its formatter.
MessageQueue myQueue = new MessageQueue(".\\myQueue");
myQueue.set_Formatter(new XmlMessageFormatter(new Type[]
{ String.class.ToType() }));
// Add an event handler for the ReceiveCompleted event.
myQueue.add_ReceiveCompleted(new ReceiveCompletedEventHandler
(MyReceiveCompleted));
// Begin the asynchronous receive operation.
myQueue.BeginReceive();
// Do other work on the current thread.
return;
} //main
//**************************************************
// Provides an event handler for the ReceiveCompleted
// event.
//**************************************************
private static void MyReceiveCompleted(Object source,
ReceiveCompletedEventArgs asyncResult)
{
// Connect to the queue.
MessageQueue mq = (MessageQueue)source;
// End the asynchronous Receive operation.
Message m = mq.EndReceive(asyncResult.get_AsyncResult());
// Display message information on the screen.
Console.WriteLine("Message: " + (String)(m.get_Body()));
// Restart the asynchronous Receive operation.
mq.BeginReceive();
return;
} //MyReceiveCompleted
} //MyNewQueue
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.