Skip to content

Commit

Permalink
Document ServiceControl headers (#6934)
Browse files Browse the repository at this point in the history
  • Loading branch information
ramonsmits authored Dec 18, 2024
1 parent e294cfa commit 9304e11
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions nservicebus/messaging/headers.md
Original file line number Diff line number Diff line change
Expand Up @@ -486,3 +486,39 @@ snippet: HeaderWriterDataBusConvention
#### Example body

snippet: HeaderWriterDataBusConventionBody

## ServiceControl

### ServiceControl.RetryTo

Value: Queue name

When present in a failed message to ServiceControl, ServiceControl will send the message to this queue instead of the queue name value from [NServiceBus.FailedQ](#error-forwarding-headers-nservicebus-failedq)

This is used by the ServiceControl transport adapter to bridge failed messages between different transports.

### ServiceControl.TargetEndpointAddress

Value: Queue name
Used by messageging bridge to return the message back to the correct queue if the failed message reach

### ServiceControl.Retry.AcknowledgementQueue

Value: Queue name

The queue to send an acknowledgement system message back to a specific ServiceControl queue to mark a retried message as processed.

### ServiceControl.Retry.Successful

Contains a timestamp in the format `yyyy-MM-dd HH:mm:ss:ffffff Z` to indicate when a message was succesfully processed.

Part of the control message send back to ServiceControl to signal that a message that was manually retried in ServicePulse/Control and flag as processed succesful.

### ServiceControl.Retry.UniqueMessageId

Contains the [NServiceBus.MessageId](#messaging-interaction-headers-nservicebus-messageid) value of the message that was succesfully processed.

Part of the control message send back to


The presence of any header key that starts with `ServiceControl.` would indicate its a message that is manually retried.

0 comments on commit 9304e11

Please sign in to comment.