Stdin¶
The stdin
source reads data items from standard input (stdin), treating each line as a separate data item.
It is useful for interactive scenarios or debugging where input is provided manually.
StdinSource source = new StdinSource();
source:
stdin: {}
Java dependency management¶
Add this declaration to your dependency management system to access the configuration DSL for this plugin in Java.
<dependency>
<groupId>org.voltdb</groupId>
<artifactId>volt-stream-connectors-api</artifactId>
<version>1.4.0</version>
</dependency>
implementation group: 'org.voltdb', name: 'volt-stream-connectors-api', version: '1.4.0'