Skip to main content

IFluidHandleInternal Interface

Handle to a shared FluidObject.

This API is provided for existing users, but is not recommended for new users.

To use, import via @fluidframework/core-interfaces/legacy.

For more information about our API support guarantees, see here.

Signature

export interface IFluidHandleInternal<out T = unknown> extends IFluidHandle<T>, IProvideFluidHandle

Extends: IFluidHandle<T>, IProvideFluidHandle

Type Parameters

Parameter Default Description
T unknown

Properties

Property Alerts Modifiers Type Description
absolutePath Alpha readonly string The absolute path to the handle context from the root.

Methods

Method Alerts Return Type Description
attachGraph() Alpha void Runs through the graph and attach the bounded handles.

Property Details

absolutePath

The absolute path to the handle context from the root.

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
readonly absolutePath: string;

Type: string

Method Details

attachGraph

Runs through the graph and attach the bounded handles.

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
attachGraph(): void;