List of usage examples for javax.jms BytesMessage readLong
long readLong() throws JMSException;
From source file:com.fiorano.openesb.application.application.OutputPortInstance.java
public void fromMessage(BytesMessage bytesMessage) throws JMSException { super.fromMessage(bytesMessage); priority = bytesMessage.readInt();//from w ww .j av a 2 s.c o m publisherConfigName = bytesMessage.readUTF(); timeToLive = bytesMessage.readLong(); applicationContextTransformation = new Transformation(); applicationContextTransformation.fromMessage(bytesMessage); }