Package net.lr.karaf.jms.template

Examples of net.lr.karaf.jms.template.VoidSessionExecutor


        });
    }

    public void send(final String queueName, final String body, final String replyTo) {
        assertConnection();
        jmsTemplate.doInSession(new VoidSessionExecutor() {
            public void execute(Session session) throws JMSException {
                Message message = session.createTextMessage(body);
                if (replyTo != null) {
                    message.setJMSReplyTo(session.createQueue(replyTo));
                }
View Full Code Here

TOP

Related Classes of net.lr.karaf.jms.template.VoidSessionExecutor

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.