Package org.apache.qpid.client.message

Examples of org.apache.qpid.client.message.JMSBytesMessage.writeShort()


    }

    public void testReadUnsignedShort() throws Exception
    {
        JMSBytesMessage bm = TestMessageHelper.newJMSBytesMessage();
        bm.writeShort((byte) 9);
        bm.reset();
        int result = bm.readUnsignedShort();
        assertEquals(9, result);
    }
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.