Skip to main content
Version: v1

IGarbageCollectionDetailsBase Interface

GC details provided to each node during creation.

Signature

export interface IGarbageCollectionDetailsBase

Properties

PropertyModifiersTypeDescription
gcDataoptionalIGarbageCollectionDataThe GC data of this node.
unrefTimestampoptionalnumberIf this node is unreferenced, the time when it was marked as such.
usedRoutesoptionalstring[]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[]