IFluidRunnable Interface
Packages > @fluidframework/core-interfaces > IFluidRunnable
Signature:
export interface IFluidRunnable
Methods
Method | Description |
---|---|
run(args) | |
stop(reason) |
Methods
run
Signature:
run(...args: any[]): Promise<void>;
Parameters
Parameter | Type | Description |
---|---|---|
args | any[] |
Returns:
Promise<void>
stop
Signature:
stop(reason?: string): void;
Parameters
Parameter | Type | Description |
---|---|---|
reason | string |
Returns:
void