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

FlagAlertsDescription
BadRequestErrorBetaClients message is invalid and should retry immediately with a valid message.
InvalidScopeErrorBetaClient's token is not valid for the intended message.
LimitExceededErrorBetaService is having issues. Client should not retry.
ThrottlingErrorBetaRetriable 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"