Package org.apache.camel.impl

Examples of org.apache.camel.impl.ProducerTemplateProcessor


     * @param camelContext the context to use
     * @param producerTemplate  the template used to send the exchange
     * @return a newly created JMS MessageListener
     */
    public static CamelMessageListener newInstance(CamelContext camelContext, ProducerTemplate producerTemplate) {
        return new CamelMessageListener(camelContext, new ProducerTemplateProcessor(producerTemplate));
    }
View Full Code Here


     * @param camelContext the context to use
     * @param producerTemplate  the template used to send the exchange
     * @return a newly created JMS MessageListener
     */
    public static CamelMessageListener newInstance(CamelContext camelContext, ProducerTemplate producerTemplate) {
        return new CamelMessageListener(camelContext, new ProducerTemplateProcessor(producerTemplate));
    }  
View Full Code Here

TOP

Related Classes of org.apache.camel.impl.ProducerTemplateProcessor

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.