Skip to content 

IFluidHandleContext Interface

Packages > @fluidframework/core-interfaces > IFluidHandleContext

An IFluidHandleContext describes a routing context from which other IFluidHandleContexts are defined

Signature:

export interface IFluidHandleContext extends IProvideFluidHandleContext 

Extends: IProvideFluidHandleContext

Properties

List of properties of this interface
Property Type Description
absolutePath string The absolute path to the handle context from the root.
isAttached boolean Flag indicating whether or not the entity has services attached.
routeContext IFluidHandleContext The parent IFluidHandleContext that has provided a route path to this IFluidHandleContext or undefined at the root.

Methods

List of methods of this class
Method Description
attachGraph() Runs through the graph and attach the bounded handles.
resolveHandle(request)

Events

absolutePath

The absolute path to the handle context from the root.

Signature:

absolutePath: string;

isAttached

Flag indicating whether or not the entity has services attached.

Signature:

isAttached: boolean;

routeContext

The parent IFluidHandleContext that has provided a route path to this IFluidHandleContext or undefined at the root.

Signature:

routeContext?: IFluidHandleContext;

Methods

attachGraph

Runs through the graph and attach the bounded handles.

Signature:

attachGraph(): void;

Returns:

void

resolveHandle

Signature:

resolveHandle(request: IRequest): Promise<IResponse>;

Parameters

List of parameters
Parameter Type Description
request IRequest

Returns:

Promise<IResponse>