Properties of a WebsocketTask.

interface IWebsocketTask {
    filter?: null | string;
    maxDataAgeSeconds?: null | number;
    subscription?: null | string;
    url?: null | string;
}

Implemented by

Properties

filter?: null | string

Incoming message JSONPath filter. Example: "$[?(@.channel == 'ticker' && @.market == 'BTC/USD')]"

maxDataAgeSeconds?: null | number

Minimum amount of time required between when the horses are taking out.

subscription?: null | string

The websocket message to notify of a new subscription.

url?: null | string

The websocket url.