Interface RedisTriggerNodeParameters

Source
interface RedisTriggerNodeParameters {
    channels?: string;
    options?: {
        jsonParseBody?: boolean;
        onlyMessage?: boolean;
    };
}

Properties§

Source§

readonly channels?: string

Channels to subscribe to, multiple channels be defined with comma. Wildcard character(*) is supported.

Source§

readonly options?: { jsonParseBody?: boolean; onlyMessage?: boolean }

Default: {}