IGarbageCollectionDetailsBase Interface

Packages > @fluidframework/runtime-definitions > IGarbageCollectionDetailsBase

GC details provided to each node during creation.

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

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

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

Signature

export interface IGarbageCollectionDetailsBase

Properties

Property Alerts Modifiers Type Description
gcData Alpha optional IGarbageCollectionData The GC data of this node.
usedRoutes Alpha optional string[] A list of routes to Fluid objects that are used in this node.

Property Details

gcData

The GC data of this node.

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

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

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

Signature

gcData?: IGarbageCollectionData;

Type: IGarbageCollectionData

usedRoutes

A list of routes to Fluid objects that are used in this node.

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

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

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

Signature

usedRoutes?: string[];

Type: string[]