Type Alias: PipelineBinding
type PipelineBinding = {
scene: Scene;
unbind: void;
};
Defined in: livelink.clients/livelink.agent/sources/data/IngestionPipeline.ts:28
A scene attached to an IngestionPipeline. Hold it to detach that scene again; the pipeline keeps ingesting into whatever is still bound.
Properties
scene
readonly scene: Scene;
Defined in: livelink.clients/livelink.agent/sources/data/IngestionPipeline.ts:30
The bound scene.
Methods
unbind()
unbind(): void;
Defined in: livelink.clients/livelink.agent/sources/data/IngestionPipeline.ts:33
Detach the scene and release the per-scene resolvers (and their scene listeners).
Returns
void