ISummaryNack Interface
Contents of summary nack expected from the server.
To use, import via @fluidframework/driver-definitions/legacy
.
For more information about our API support guarantees, see here.
Signature
export interface ISummaryNack
Properties
Property | Alerts | Modifiers | Type | Description |
---|---|---|---|---|
code | Alpha |
optional |
number | An error code number that represents the error. It will be a valid HTTP error code. 403 errors are non retriable. 400 errors are always immediately retriable. 429 errors are retriable or non retriable (depends on type field). |
message | Alpha |
optional |
string | A message about the error for debugging/logging/telemetry purposes |
retryAfter | Alpha |
optional |
number | Optional Retry-After time in seconds. If specified, the client should wait this many seconds before retrying.8 |
summaryProposal | Alpha |
ISummaryProposal | Information about the proposed summary message. |
Property Details
code
An error code number that represents the error. It will be a valid HTTP error code. 403 errors are non retriable. 400 errors are always immediately retriable. 429 errors are retriable or non retriable (depends on type field).
For more information about our API support guarantees, see here.
Signature
code?: number;
Type: number
message
A message about the error for debugging/logging/telemetry purposes
For more information about our API support guarantees, see here.
Signature
message?: string;
Type: string
retryAfter
Optional Retry-After time in seconds. If specified, the client should wait this many seconds before retrying.8
For more information about our API support guarantees, see here.
Signature
retryAfter?: number;
Type: number
summaryProposal
Information about the proposed summary message.
For more information about our API support guarantees, see here.
Signature
summaryProposal: ISummaryProposal;
Type: ISummaryProposal