Packages > @fluidframework/runtime-definitions > IGarbageCollectionData

IGarbageCollectionData Interface

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

Signature

export interface IGarbageCollectionData

Properties

Property Type Description
gcNodes { [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.

Signature

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

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