We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
We define some prebuilt sinks that allow you to capture that processed data out of the platform.
Simply prints the output to the console.
PrintSink example:
SinkInf printSink = new PrintSink(); PipeLineComponent sinkComp = new PipeLineComponent(printSink,null);
As the Sinks have no more output components, the ouputs can be null.
null
Allows to send to results to a remote HTTP server through a HTTP Post request. Parameters:
HTTPPostSink example:
String url=... SinkInf postSink = new HTTPPostSink(url); PipeLineComponent sinkComp = new PipeLineComponent(postSink,null);
Opens a websocket client such that it can send data to a websocket server
Opens a websocket server, such that it can send data to one or more websocket clients