Skip to content

Instantly share code, notes, and snippets.

@rterp
Created January 30, 2016 01:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rterp/837b9bd5aad7b2b6b2c2 to your computer and use it in GitHub Desktop.
Save rterp/837b9bd5aad7b2b6b2c2 to your computer and use it in GitHub Desktop.
public void buildProducerRoute(CamelContext context) throws Exception {
context.addRoutes(new RouteBuilder() {
@Override
public void configure() throws Exception {
Processor processor = (Exchange exchange) -> {
System.out.println("PRODUCER Received response: " + exchange.getIn().getBody(String.class));
};
from("file:///Users/RobTerpilowski/tmp/in")
.to("jms-broker:queue:robt.test.queue?exchangePattern=InOut")
.process(processor);
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment