Package org.apache.camel.model

Examples of org.apache.camel.model.ProceedDefinition


                route.addOutput(proxy);
                route.pushBlock(proxy.getProceed());

                // if there is a proceed in the interceptor proxy then we should add
                // the current outputs to out route so we will proceed and continue to route to them
                ProceedDefinition proceed = ProcessorTypeHelper.findFirstTypeInOutputs(proxy.getOutputs(), ProceedDefinition.class);
                if (proceed != null) {
                    proceed.getOutputs().addAll(outputs);
                }
            }

        }
View Full Code Here

TOP

Related Classes of org.apache.camel.model.ProceedDefinition

Copyright © 2018 www.massapicom. 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.