Package org.torquebox.messaging

Examples of org.torquebox.messaging.RemoteMessageProcessorGroup


        log.debugf("Installing a message processor for destination '%s'", metaData.getDestinationName());

        if (destinationMetaData != null && destinationMetaData.isRemote()) {
            log.debug("Destination is located on a remote host");
            service = new RemoteMessageProcessorGroup( phaseContext.getServiceRegistry(), baseServiceName, metaData.getDestinationName(), destinationMetaData.getRemoteHost(), destinationMetaData.getUsername(), destinationMetaData.getPassword() );
        } else {
            service = new MessageProcessorGroup( phaseContext.getServiceRegistry(), baseServiceName, metaData.getDestinationName() );
        }

        service.setConcurrency( metaData.getConcurrency() );
View Full Code Here

TOP

Related Classes of org.torquebox.messaging.RemoteMessageProcessorGroup

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.