Skip to main content

ISummarizeEventProps Interface

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

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

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

Sealed

This type is "sealed," meaning that code outside of the library defining it should not implement or extend it. Future versions of this type may add members or make typing of readonly members more specific.

Signature

/** @sealed */
export interface ISummarizeEventProps

Properties

Property Alerts Modifiers Type Description
currentAttempt Beta number
error Beta optional any
failureMessage Beta optional string Result message of a failed summarize attempt
isLastSummary Beta optional boolean Was this summarize attempt part of the lastSummary process?
maxAttempts Beta number
result Beta "success" | "failure" | "canceled"

Property Details

currentAttempt

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

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

Signature
currentAttempt: number;

Type: number

error

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

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

Signature
error?: any;

Type: any

failureMessage

Result message of a failed summarize attempt

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

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

Signature
failureMessage?: string;

Type: string

isLastSummary

Was this summarize attempt part of the lastSummary process?

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

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

Signature
isLastSummary?: boolean;

Type: boolean

maxAttempts

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

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

Signature
maxAttempts: number;

Type: number

result

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

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

Signature
result: "success" | "failure" | "canceled";

Type: "success" | "failure" | "canceled"