IGarbageCollectionData Interface
Packages > @fluidframework/runtime-definitions > IGarbageCollectionData
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 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
gcNodes: {
[id: string]: string[];
};
Type: { [id: string]: string[]; }