Skip to main content

INack Interface

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 interface INack

Properties

Property Alerts Type Description
content Alpha INackContent Detail info about the nack.
operation Alpha IDocumentMessage | undefined The operation that was just nacked.
sequenceNumber Alpha number The sequence number the client needs to catch up to before retrying.

Property Details

content

Detail info about the nack.

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

content: INackContent;

Type: INackContent

operation

The operation that was just nacked.

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

operation: IDocumentMessage | undefined;

Type: IDocumentMessage | undefined

sequenceNumber

The sequence number the client needs to catch up to before retrying.

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

sequenceNumber: number;

Type: number