Documentation
    Preparing search index...

    Interface UDPClusterManagerOptions

    interface UDPClusterManagerOptions {
        aliveTimeoutCorrection?: number;
        broadcastAddress?: string;
        broadcastPort?: number;
        cluster?: ICluster;
        excludeHosts?: string[] | "localhost";
        includeHosts?: string[] | "localhost";
        limitedBroadcastAddress?: string;
    }
    Index

    Properties

    aliveTimeoutCorrection?: number

    Message queue alive timeout correction. Used to correct waiting time to check if the server is alive

    1000
    
    broadcastAddress?: string

    Message queue broadcast address

    limitedBroadcastAddress
    
    broadcastPort?: number

    Message queue broadcast port

    63000
    
    cluster?: ICluster

    Represents the cluster operations that are responsible for managing clusters. This includes operations such as adding, removing, or checking if a cluster server exists.

    excludeHosts?: string[] | "localhost"

    Skip messages that are broadcast by specified addresses or set to "localhost" if you want to skip messages from "127.0.0.1" or "::1"

    includeHosts?: string[] | "localhost"

    Allow messages that are broadcast only by specified addresses or set to "localhost" if you want to allow messages only from "127.0.0.1" or "::1"

    limitedBroadcastAddress?: string

    Message queue limited broadcast address

    255.255.255.255