Interface RequestCompleted
- Namespace
- MassTransit.Contracts
- Assembly
- MassTransit.Abstractions.dll
Published by the saga when a request is completed, so that waiting requests can be completed, or redelivered to the saga for completion.
public interface RequestCompleted
Properties
CorrelationId
The saga correlationId
Guid CorrelationId { get; }
Property Value
Payload
The actual message payload
object Payload { get; }
Property Value
PayloadType
The payload types supported by the payload
string[] PayloadType { get; }
Property Value
- string[]
Timestamp
The timestamp when the request was completed
DateTime Timestamp { get; }