Java javax.jms StreamMessage fields, constructors, methods, implement or subclass

Example usage for Java javax.jms StreamMessage fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.jms StreamMessage.

The text is from its open source code.

Implementation

javax.jms.StreamMessage has the following implementations.
Click this link to see all its implementation.

Method

intreadBytes(byte[] value)
Reads a byte array field from the stream message into the specified byte[] object (the read buffer).
ObjectreadObject()
Reads an object from the stream message.
voidreset()
Puts the message body in read-only mode and repositions the stream to the beginning.
voidwriteBytes(byte[] value, int offset, int length)
Writes a portion of a byte array as a byte array field to the stream message.
voidwriteBytes(byte[] value)
Writes a byte array field to the stream message.
voidwriteDouble(double value)
Writes a double to the stream message.
voidwriteInt(int value)
Writes an int to the stream message.
voidwriteObject(Object value)
Writes an object to the stream message.
voidwriteString(String value)
Writes a String to the stream message.