Channel API
Creating Channels
Main Channel
const main = mainChannel('main');Additional Channels
const processing = createChannel('processing');
const client = createChannel('client');Channel Configuration
.events([...])
.events([...])const client = createChannel('client')
.events([responseEvent, errorEvent]);.sink(sinkFactory)
.sink(sinkFactory)Sink Factories
Sink
Description
See Also
Last updated