IEnqueueSummarizeOptions Interface
Options to use when enqueueing a summarize attempt.
To use, import via @fluidframework/container-runtime/legacy
.
For more information about our API support guarantees, see here.
Signature
export interface IEnqueueSummarizeOptions extends IOnDemandSummarizeOptions
Extends: IOnDemandSummarizeOptions
Properties
Property | Alerts | Modifiers | Type | Description |
---|---|---|---|---|
afterSequenceNumber | Alpha |
optional , readonly |
number | If specified, The summarize attempt will not occur until after this sequence number. |
override | Alpha |
optional , readonly |
boolean | True to override the existing enqueued summarize attempt if there is one. This will guarantee that this attempt gets enqueued. If override is false, than an existing enqueued summarize attempt will block a new one from being enqueued. There can only be one enqueued at a time. Defaults to false. |
Property Details
afterSequenceNumber
If specified, The summarize attempt will not occur until after this sequence number.
To use, import via @fluidframework/container-runtime/alpha
.
For more information about our API support guarantees, see here.
Signature
readonly afterSequenceNumber?: number;
Type: number
override
True to override the existing enqueued summarize attempt if there is one. This will guarantee that this attempt gets enqueued. If override is false, than an existing enqueued summarize attempt will block a new one from being enqueued. There can only be one enqueued at a time. Defaults to false.
To use, import via @fluidframework/container-runtime/alpha
.
For more information about our API support guarantees, see here.
Signature
readonly override?: boolean;
Type: boolean