Object -
streams
:
OutputProcess
The OutputProcess
object is responsible for sending the output (only the events of type streams:CURRENT
to the
destination stream. It takes a function pointer outputFunc
which actually has the logic to process the output.
Constructor
__init
( function(map) returns (())
outputFunc)
- outputFunc
function(map) returns (())
Methods
Sends the output to the streaming action. most of the time the output is published to a destination stream
at the streaming action. Only the events with type streams:CURRENT
are passed to the outputFunc
.
Parameters
- streamEvents StreamEvent[]
-
The array of stream events to be filtered out for CURRENT events.