Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 09c4b8b4d2 |
@@ -3,4 +3,11 @@ namespace Hrynco.RabbitMq;
|
|||||||
public record CorrelationContext
|
public record CorrelationContext
|
||||||
{
|
{
|
||||||
public required string CorrelationId { get; init; }
|
public required string CorrelationId { get; init; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Optional queue name the sender wants the result published to.
|
||||||
|
/// If set, the consumer should publish a result message to this queue after processing.
|
||||||
|
/// If null, the sender does not require a reply (fire-and-forget).
|
||||||
|
/// </summary>
|
||||||
|
public string? ReplyTo { get; init; }
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user