ISubmitSummaryOpResult Interface

Packages > @fluidframework/container-runtime > ISubmitSummaryOpResult

Results of submitSummary after submitting the summarize op.

This API is provided for existing users, but is not recommended for new users.

To use, import via @fluidframework/container-runtime/legacy.

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

Signature

export interface ISubmitSummaryOpResult extends Omit<IUploadSummaryResult, "stage" | "error">

Extends: Omit<IUploadSummaryResult , “stage” | “error”>

Properties

Property Alerts Modifiers Type Description
clientSequenceNumber Alpha readonly number The client sequence number of the summarize op submitted for the summary.
stage Alpha readonly "submit"
submitOpDuration Alpha readonly number Time it took to submit the summarize op to the broadcasting service.

Property Details

clientSequenceNumber

The client sequence number of the summarize op submitted for the summary.

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

To use, import via @fluidframework/container-runtime/alpha.

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

Signature

readonly clientSequenceNumber: number;

Type: number

stage

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

To use, import via @fluidframework/container-runtime/alpha.

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

Signature

readonly stage: "submit";

Type: “submit”

submitOpDuration

Time it took to submit the summarize op to the broadcasting service.

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

To use, import via @fluidframework/container-runtime/alpha.

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

Signature

readonly submitOpDuration: number;

Type: number