QuestDB JavaScript Client - v5.0.0
    Preparing search index...

    Interface QwpNodeUdpOptions

    interface QwpNodeUdpOptions {
        host: string;
        maxDatagramSize?: number;
        multicastInterface?: string;
        multicastTtl?: number;
        onError?: (error: Error) => void;
        port?: number;
        socketFactory?: () => QwpNodeUdpSocketLike;
    }
    Index

    Properties

    host: string

    Destination hostname or IPv4 address.

    maxDatagramSize?: number

    Maximum encoded datagram size. Defaults to 1400 bytes.

    multicastInterface?: string

    Optional local IPv4 interface used for multicast traffic.

    multicastTtl?: number

    IPv4 multicast TTL from 0 through 255. Defaults to 0.

    onError?: (error: Error) => void

    Receives isolated local socket errors; UDP has no server acknowledgement.

    port?: number

    Destination port. Defaults to the Java QWP UDP port, 9007.

    socketFactory?: () => QwpNodeUdpSocketLike

    Test hook.