Re: AW: How to called the processor
The below mentioned code snippet works as you expected. CamelContext context = new DefaultCamelContext(); context.addRoutes(new RouteBuilder() { @Override public void configure() throws Exception { from("direct:start").process(new
AW: How to called the processor
> > *can i able to do as below, if not then how can i acheive it ?* > > from("direct:start").process(new Processor() { > > @Override > public void process(Exchange exchange) > throws Exception { >