NodeOPCUA API Documentation
    Preparing search index...

    Interface ReverseConnectOptions

    interface ReverseConnectOptions {
        connections: ReverseConnectConnectionOptions[];
        connectionTimeout?: number;
        maxReconnectDelay?: number;
        reconnectDelay?: number;
    }
    Index

    The client reverse-connect listeners the server should dial into.

    connectionTimeout?: number

    inbound-connection timeout (ms) after the RHE before giving up and re-dialing.

    120000 (spec2 min)
    
    maxReconnectDelay?: number

    upper bound (ms) for the exponential backoff between re-dials.

    60000
    
    reconnectDelay?: number

    delay (ms) before re-dialing after a socket closes/errs.

    5000