Interface RemoteNodeOptions<S>

interface RemoteNodeOptions<S> {
    deserialize?: ((obj, options?) => DataFrame);
    name?: string;
    serialize?: ((obj, options?) => any);
    service?: Serializable<S>;
    uid?: string;
}

Type Parameters

Hierarchy (view full)

Properties

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

Type declaration

name?: string

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

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

Type declaration

service?: Serializable<S>

Service to use for the remote note

Default

RemoteService any remote service
uid?: string

Manually set the unique identifier of the node