Skip to main content

NackErrorType Enum

Type of the nack. \

This API is provided for existing users, but is not recommended for new users.

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 Beta Clients message is invalid and should retry immediately with a valid message.
InvalidScopeError Beta Client's token is not valid for the intended message.
LimitExceededError Beta Service is having issues. Client should not retry.
ThrottlingError Beta Retriable after retryAfter seconds.

BadRequestError

Clients message is invalid and should retry immediately with a valid message.

This API is provided for existing users, but is not recommended for new users.

For more information about our API support guarantees, see here.

Signature
BadRequestError = "BadRequestError"

InvalidScopeError

Client's token is not valid for the intended message.

This API is provided for existing users, but is not recommended for new users.

For more information about our API support guarantees, see here.

Signature
InvalidScopeError = "InvalidScopeError"

LimitExceededError

Service is having issues. Client should not retry.

This API is provided for existing users, but is not recommended for new users.

For more information about our API support guarantees, see here.

Signature
LimitExceededError = "LimitExceededError"

ThrottlingError

Retriable after retryAfter seconds.

This API is provided for existing users, but is not recommended for new users.

For more information about our API support guarantees, see here.

Signature
ThrottlingError = "ThrottlingError"