hoshimi
    Preparing search index...

    Interface NodeOptions

    The node options.

    interface NodeOptions {
        host: string;
        id?: string;
        password: string;
        port: number;
        restTimeout?: number;
        retryAmount?: number;
        retryDelay?: number;
        secure?: boolean;
        sessionId?: string;
    }
    Index

    Properties

    host: string

    The node host.

    id?: string

    The node id.

    password: string

    The node password.

    port: number

    The node port.

    restTimeout?: number

    The timeout for the REST in milliseconds.

    10000
    
    retryAmount?: number

    The amount of retries to reconnect.

    5
    
    retryDelay?: number

    The delay between retries in milliseconds.

    20000
    
    secure?: boolean

    Enable if the node is secure.

    false
    
    sessionId?: string

    The session id of the node.