Table of Contents

Interface ISaga

Namespace
MassTransit
Assembly
MassTransit.Abstractions.dll

Interface that specifies a class is usable as a saga instance, including the ability to get and set the CorrelationId on the saga instance.

public interface ISaga

Properties

CorrelationId

Identifies the saga instance uniquely, and is the primary correlation for the instance. While the setter is not typically called, it is there to support persistence consistently across implementations.

Guid CorrelationId { get; set; }

Property Value

Guid