Package org.apache.cxf.message

Examples of org.apache.cxf.message.MessageImpl.wait()


            Message inMessage = new MessageImpl();
            synchronized (inMessage) {
                correlationMap.put(correlationId, inMessage);
                jmsTemplate.send(jmsConfig.getTargetDestination(), messageCreator);
                try {
                    inMessage.wait(jmsTemplate.getReceiveTimeout());
                } catch (InterruptedException e) {
                    correlationMap.remove(correlationId);
                    throw new RuntimeException(e);
                }
                correlationMap.remove(correlationId);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.