ISubmitSummaryOptions Interface
To use, import via @fluidframework/container-runtime/legacy
.
For more information about our API support guarantees, see here.
Signature
export interface ISubmitSummaryOptions extends ISummarizeOptions
Extends: ISummarizeOptions
Properties
Property | Alerts | Modifiers | Type | Description |
---|---|---|---|---|
cancellationToken | Alpha |
readonly |
ISummaryCancellationToken | Tells when summary process should be cancelled |
finalAttempt | Alpha |
optional , readonly |
boolean | Summarization may be attempted multiple times. This tells whether this is the final summarization attempt. |
latestSummaryRefSeqNum | Alpha |
readonly |
number | The sequence number of the latest summary used to validate if summary state is correct before summarizing |
summaryLogger | Alpha |
readonly |
ITelemetryLoggerExt | Logger to use for correlated summary events |
Property Details
cancellationToken
Tells when summary process should be cancelled
To use, import via @fluidframework/container-runtime/alpha
.
For more information about our API support guarantees, see here.
Signature
readonly cancellationToken: ISummaryCancellationToken;
Type: ISummaryCancellationToken
finalAttempt
Summarization may be attempted multiple times. This tells whether this is the final summarization attempt.
To use, import via @fluidframework/container-runtime/alpha
.
For more information about our API support guarantees, see here.
Signature
readonly finalAttempt?: boolean;
Type: boolean
latestSummaryRefSeqNum
The sequence number of the latest summary used to validate if summary state is correct before summarizing
To use, import via @fluidframework/container-runtime/alpha
.
For more information about our API support guarantees, see here.
Signature
readonly latestSummaryRefSeqNum: number;
Type: number
summaryLogger
Logger to use for correlated summary events
To use, import via @fluidframework/container-runtime/alpha
.
For more information about our API support guarantees, see here.
Signature
readonly summaryLogger: ITelemetryLoggerExt;
Type: ITelemetryLoggerExt