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 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.

This API is provided as an alpha preview and may change without notice.

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.

This API is provided as an alpha preview and may change without notice.

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.

This API is provided as an alpha preview and may change without notice.

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.

This API is provided as an alpha preview and may change without notice.

To use, import via @fluidframework/driver-definitions/alpha.

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

Signature

ThrottlingError = "ThrottlingError"