ISummarizeEventProps Interface
Packages > @fluidframework/container-runtime > ISummarizeEventProps
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 ISummarizeEventProps
Properties
Property | Alerts | Modifiers | Type | Description |
---|---|---|---|---|
currentAttempt | Alpha |
number | ||
error | Alpha |
optional |
any | |
maxAttempts | Alpha |
number | ||
result | Alpha |
"success" | "failure" | "canceled" |
Property Details
currentAttempt
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
currentAttempt: number;
Type: number
error
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
error?: any;
Type: any
maxAttempts
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
maxAttempts: number;
Type: number
result
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
result: "success" | "failure" | "canceled";
Type: “success” | “failure” | “canceled”