Skip to main content

IGarbageCollectionData Interface

Garbage collection data returned by nodes in a Container. Used for running GC in the Container.

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 IGarbageCollectionData

Properties

Property Alerts Type Description
gcNodes Alpha { [id: string]: string[]; } The GC nodes of a Fluid object in the Container. Each node has an id and a set of routes to other GC nodes.

Property Details

gcNodes

The GC nodes of a Fluid object in the Container. Each node has an id and a set of routes to other GC nodes.

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

gcNodes: {
[id: string]: string[];
};

Type: { [id: string]: string[]; }