Interface RemoteSinkNodeOptions<S>

interface RemoteSinkNodeOptions<S> {
    completedEvent?: boolean;
    deserialize?: ((obj, options?) => DataFrame);
    name?: string;
    persistence?: boolean;
    serialize?: ((obj, options?) => any);
    service?: Serializable<S>;
    type?: Constructor<RemoteNode<any, any, S>>;
    uid?: string;
}

Type Parameters

Hierarchy (view full)

Properties

completedEvent?: boolean

Emit a completed event for this sink

Default

true
deserialize?: ((obj, options?) => DataFrame)

Type declaration

name?: string

User friendly name of the node Used for querying a node by its name.

persistence?: boolean

Store objects in data services

Default

true
serialize?: ((obj, options?) => any)

Type declaration

service?: Serializable<S>

Service to use for the remote note

Default

RemoteService any remote service
type?: Constructor<RemoteNode<any, any, S>>

Node type to use

Default

RemoteNode a normal remote node
uid?: string

Manually set the unique identifier of the node