NackErrorType Enum
Type of the nack.
To use, import via @fluidframework/driver-definitions/legacy
.
For more information about our API support guarantees, see here.
Signature
export declare enum NackErrorType
Flags
Flag | Alerts | Description |
---|---|---|
BadRequestError | Alpha |
Clients message is invalid and should retry immediately with a valid message. |
InvalidScopeError | Alpha |
Client's token is not valid for the intended message. |
LimitExceededError | Alpha |
Service is having issues. Client should not retry. |
ThrottlingError | Alpha |
Retriable after retryAfter seconds. |
BadRequestError
Clients message is invalid and should retry immediately with a valid message.
To use, import via @fluidframework/driver-definitions/alpha
.
For more information about our API support guarantees, see here.
Signature
BadRequestError = "BadRequestError"
InvalidScopeError
Client's token is not valid for the intended message.
To use, import via @fluidframework/driver-definitions/alpha
.
For more information about our API support guarantees, see here.
Signature
InvalidScopeError = "InvalidScopeError"
LimitExceededError
Service is having issues. Client should not retry.
To use, import via @fluidframework/driver-definitions/alpha
.
For more information about our API support guarantees, see here.
Signature
LimitExceededError = "LimitExceededError"
ThrottlingError
Retriable after retryAfter seconds.
To use, import via @fluidframework/driver-definitions/alpha
.
For more information about our API support guarantees, see here.
Signature
ThrottlingError = "ThrottlingError"