interface MeshCallConnectParams {
    callback: ((...args: any[]) => any);
    guid?: string;
    logLevel?: LogLevel;
    namespace?: string;
    redis: RedisConfig;
    topic: string;
}

Properties

callback: ((...args: any[]) => any)

The linked worker function that will be called

guid?: string

Idempotent GUID for the worker and engine

logLevel?: LogLevel

Log level for the worker

namespace?: string

Namespace for grouping common functions

Redis configuration for the worker

topic: string

Unique topic for the worker function