Class MessageSent<T>
The fact that a message has been sent.
Inheritance
MessageSent<T>
Assembly: Akka.dll
Syntax
public sealed class MessageSent<T> : IDeliverySerializable, IEquatable<MessageSent<T>>
Type Parameters
Constructors
|
Improve this Doc
View Source
MessageSent(Int64, MessageOrChunk<T>, Boolean, String, Int64)
The fact that a message has been sent.
Declaration
public MessageSent(long SeqNr, MessageOrChunk<T> Message, bool Ack, string ConfirmationQualifier, long Timestamp)
Parameters
Type |
Name |
Description |
Int64 |
SeqNr |
|
Akka.Delivery.Internal.MessageOrChunk<T> |
Message |
|
Boolean |
Ack |
|
String |
ConfirmationQualifier |
|
Int64 |
Timestamp |
|
Properties
|
Improve this Doc
View Source
Ack
Declaration
public bool Ack { get; set; }
Property Value
|
Improve this Doc
View Source
ConfirmationQualifier
Declaration
public string ConfirmationQualifier { get; set; }
Property Value
|
Improve this Doc
View Source
Message
Declaration
public MessageOrChunk<T> Message { get; set; }
Property Value
Type |
Description |
Akka.Delivery.Internal.MessageOrChunk<T> |
|
|
Improve this Doc
View Source
SeqNr
Declaration
public long SeqNr { get; set; }
Property Value
|
Improve this Doc
View Source
Timestamp
Declaration
public long Timestamp { get; set; }
Property Value
Methods
|
Improve this Doc
View Source
Equals(MessageSent<T>)
Declaration
public bool Equals(MessageSent<T> other)
Parameters
Returns
|
Improve this Doc
View Source
FromChunked(Int64, ChunkedMessage, Boolean, String, Int64)
Declaration
public static MessageSent<T> FromChunked(long seqNo, ChunkedMessage chunkedMessage, bool ack, string confirmationQualifier, long timestamp)
Parameters
Type |
Name |
Description |
Int64 |
seqNo |
|
Akka.Delivery.Internal.ChunkedMessage |
chunkedMessage |
|
Boolean |
ack |
|
String |
confirmationQualifier |
|
Int64 |
timestamp |
|
Returns
|
Improve this Doc
View Source
FromMessageOrChunked(Int64, MessageOrChunk<T>, Boolean, String, Int64)
Declaration
public static MessageSent<T> FromMessageOrChunked(long seqNo, MessageOrChunk<T> messageOrChunk, bool ack, string confirmationQualifier, long timestamp)
Parameters
Type |
Name |
Description |
Int64 |
seqNo |
|
Akka.Delivery.Internal.MessageOrChunk<T> |
messageOrChunk |
|
Boolean |
ack |
|
String |
confirmationQualifier |
|
Int64 |
timestamp |
|
Returns
|
Improve this Doc
View Source
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
|
Improve this Doc
View Source
ToString()
Declaration
public override string ToString()
Returns
Overrides
|
Improve this Doc
View Source
WithQualifier(String)
Declaration
public MessageSent<T> WithQualifier(string qualifier)
Parameters
Type |
Name |
Description |
String |
qualifier |
|
Returns
|
Improve this Doc
View Source
WithTimestamp(Int64)
Declaration
public MessageSent<T> WithTimestamp(long timestamp)
Parameters
Type |
Name |
Description |
Int64 |
timestamp |
|
Returns
Implements
Extension Methods