Package org.apache.camel.component.routebox.seda

Examples of org.apache.camel.component.routebox.seda.RouteboxSedaEndpoint


        if (config.getInnerProtocol().equalsIgnoreCase("direct")) {
            blackboxRouteEndpoint = new RouteboxDirectEndpoint(uri, this, config);
            setProperties(blackboxRouteEndpoint.getConfig(), parameters);
        } else {
            String baseUri = getQueueKey(uri);
            blackboxRouteEndpoint = new RouteboxSedaEndpoint(uri, this, config, createQueue(baseUri, parameters));
            setProperties(blackboxRouteEndpoint.getConfig(), parameters);
        }
       
        return blackboxRouteEndpoint;
    }
View Full Code Here

TOP

Related Classes of org.apache.camel.component.routebox.seda.RouteboxSedaEndpoint

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.