Skip to content 

IFluidRunnable Interface

Packages > @fluidframework/core-interfaces > IFluidRunnable

Signature:

export interface IFluidRunnable 

Methods

List of methods of this class
Method Description
run(args)
stop(reason)

Methods

run

Signature:

run(...args: any[]): Promise<void>;

Parameters

List of parameters
Parameter Type Description
args any[]

Returns:

Promise<void>

stop

Signature:

stop(reason?: string): void;

Parameters

List of parameters
Parameter Type Description
reason string

Returns:

void