Examples of CheeseCloningProcessor


Examples of org.camelcookbook.routing.model.CheeseCloningProcessor

    @Override
    public void configure() throws Exception {
        from("direct:start")
            .log("Cheese is ${body.age} months old")
            .wireTap("direct:processInBackground")
                .onPrepare(new CheeseCloningProcessor())
            .delay(constant(1000))
            .to("mock:out");

        from("direct:processInBackground")
            .bean(CheeseRipener.class, "ripen")
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.