Registry / messaging / camel-stream

camel-stream

JSON →
library4.20.0javamavenunverified

Apache Camel component for reading from and writing to system streams (System.in, System.out, System.err).

<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-stream</artifactId> <version>4.20.0</version> </dependency>
INSTALL
IMPORT
SIG · CAMEL-STREAM
C
camel-stream
messagingjavav4.20.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

StreamComponent
org.apache.camel.component.stream.StreamComponent

Minimal Camel route reading from System.in and writing to System.out

import org.apache.camel.CamelContext; import org.apache.camel.impl.DefaultCamelContext; import org.apache.camel.builder.RouteBuilder; public class StreamExample { public static void main(String[] args) throws Exception { CamelContext context = new DefaultCamelContext(); context.addRoutes(new RouteBuilder() { @Override public void configure() { from("stream:in?promptMessage=Enter text: ") .to("stream:out"); } }); context.start(); Thread.sleep(5000); context.stop(); } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
4.20.0latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
24 hits · last 30 days
node
22
Amazon
1
OpenAI (training)
1
Resources
camel-stream — mvn dependency:get camel-stream · libregistry