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

Properties

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

The linked worker function that will be called; optional if read only

connection?: ProviderConfig

Provider configuration

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; use 'connection' instead of 'redis'

topic: string

Unique topic for the worker function