@openhps/core
    Preparing search index...

    Interface RemoteSinkNodeOptions<S>

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

    Type Parameters

    Hierarchy (View Summary)

    Index
    completedEvent?: boolean

    Emit a completed event for this sink

    true
    
    deserialize?: (obj: any, options?: RemotePushOptions) => DataFrame
    name?: string

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

    persistence?: boolean

    Store objects in data services

    true
    
    serialize?: (obj: DataFrame, options?: RemotePushOptions) => any
    service?: Serializable<S>

    Service to use for the remote note

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

    Node type to use

    RemoteNode a normal remote node
    
    uid?: string

    Manually set the unique identifier of the node