20 строки
555 B
Go
20 строки
555 B
Go
package servicebus
|
|
|
|
const vendorPrefix = "com.microsoft:"
|
|
|
|
// Operations
|
|
const (
|
|
lockRenewalOperationName = vendorPrefix + "renew-lock"
|
|
peekMessageOperationID = vendorPrefix + "peek-message"
|
|
scheduleMessageOperationID = vendorPrefix + "schedule-message"
|
|
cancelScheduledOperationID = vendorPrefix + "cancel-scheduled-message"
|
|
)
|
|
|
|
// Field Descriptions
|
|
const (
|
|
operationFieldName = "operation"
|
|
lockTokensFieldName = "lock-tokens"
|
|
serverTimeoutFieldName = vendorPrefix + "server-timeout"
|
|
associatedLinkName = "associated-link-name"
|
|
)
|