Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/Wolverine/WolverineOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -267,10 +267,9 @@ public MultipleHandlerBehavior MultipleHandlerBehavior
public MessagePartitioningRules MessagePartitioning { get; }

/// <summary>
/// Internal list of IEnvelopeRule instances that are applied via ApplyCorrelation
/// to outgoing envelopes in PersistOrSendAsync
/// List of <see cref="IEnvelopeRule"/> instances applied to every outgoing envelope.
/// </summary>
internal List<IEnvelopeRule> MetadataRules { get; } = new();
public List<IEnvelopeRule> MetadataRules { get; } = new();


/// For advanced usages, this gives you the ability to register pre-canned message handling
Expand Down
Loading