Defines the message handler interface for one connection of a HL7Receiver.

Namespace: Mergecom.HL7
Assembly: Mergecom.HL7 (in Mergecom.HL7.dll) Version: 4.3.0.0

Syntax

C#
public interface HL7ReceiverMessageHandler
Visual Basic
Public Interface HL7ReceiverMessageHandler
Visual C++
public interface class HL7ReceiverMessageHandler

Remarks

An object that implements this interface is generated by theHL7ReceiverListener when the receiver starts a connection thread to accept a connection request. The connection will call the methods of this interface to notify the application of connection status changes, received messages and errors that occur while receiving messages.

The methods of this interface are called by the receiver in the single thread that handles the connection that generates the events. No extra synchronization is needed.

See Also