C# Class DotNetWorkQueue.Messages.ReceivedMessageInternal

The internal representation of a received message.
This class is used so that we don't need to know the type of the body everywhere. Otherwise, the generic type would need to flow all the way down to the end of the dependency chain.
Inheritance: IReceivedMessageInternal
Mostra file Open project: blehnen/DotNetWorkQueue

Public Methods

Method Description
ReceivedMessageInternal ( IMessage message, IMessageId messageId, ICorrelationId correlationId ) : System.Collections.Generic

Initializes a new instance of the IReceivedMessage{T} class.

Method Details

ReceivedMessageInternal() public method

Initializes a new instance of the IReceivedMessage{T} class.
public ReceivedMessageInternal ( IMessage message, IMessageId messageId, ICorrelationId correlationId ) : System.Collections.Generic
message IMessage The message.
messageId IMessageId The message identifier.
correlationId ICorrelationId The correlation identifier.
return System.Collections.Generic