IGarbageCollectionDetailsBase Interface
GC details provided to each node during creation.
Signature
export interface IGarbageCollectionDetailsBase
Properties
Property | Modifiers | Type | Description |
---|---|---|---|
gcData | optional |
IGarbageCollectionData | The GC data of this node. |
unrefTimestamp | optional |
number | If this node is unreferenced, the time when it was marked as such. |
usedRoutes | optional |
string[] | A list of routes to Fluid objects that are used in this node. |
Property Details
gcData
The GC data of this node.
Signature
gcData?: IGarbageCollectionData;
Type: IGarbageCollectionData
unrefTimestamp
If this node is unreferenced, the time when it was marked as such.
Signature
unrefTimestamp?: number;
Type: number
usedRoutes
A list of routes to Fluid objects that are used in this node.
Signature
usedRoutes?: string[];
Type: string[]