public class StreamMessageImpl extends MessageImpl implements StreamMessage
L, log
DEFAULT_DELIVERY_MODE, DEFAULT_PRIORITY, DEFAULT_TIME_TO_LIVE
Constructor and Description |
---|
StreamMessageImpl() |
Modifier and Type | Method and Description |
---|---|
java.io.InputStream |
bodyToInputStream()
Serialize the body to an input stream.
|
void |
clearBody()
Clears the message and puts it into write mode.
|
MessageImpl |
copy() |
protected void |
copy(StreamMessageImpl newMsg) |
MessageType |
getType()
Returns the type enumeration.
|
void |
readBody(java.io.InputStream is)
Read the body from an input stream.
|
boolean |
readBoolean()
Read a boolean from the stream.
|
byte |
readByte()
Read a byte from the stream.
|
int |
readBytes(byte[] value)
Read a byte array object from the stream.
|
char |
readChar()
Read a character object from the stream.
|
double |
readDouble()
Read a double from the stream.
|
float |
readFloat()
Read a float from the stream.
|
int |
readInt()
Read an integer from the stream.
|
long |
readLong()
Read a long from the stream.
|
java.lang.Object |
readObject()
Reads the next object.
|
short |
readShort()
Read a short from the stream.
|
java.lang.String |
readString()
Read a string from the stream.
|
void |
reset()
Set the stream for reading.
|
void |
setReceive()
Sets the body for reading.
|
java.lang.String |
toString() |
void |
writeBoolean(boolean b)
Writes a boolean to the stream.
|
void |
writeByte(byte b)
Writes a byte to the stream.
|
void |
writeBytes(byte[] buf)
Writes a byte array to the stream.
|
void |
writeBytes(byte[] buf,
int offset,
int length)
Writes a byte array to the stream.
|
void |
writeChar(char ch)
Writes a character to the stream.
|
void |
writeDouble(double d)
Writes a double to the stream.
|
void |
writeFloat(float f)
Writes a float to the stream.
|
void |
writeInt(int i)
Writes an integer to the stream.
|
void |
writeLong(long l)
Writes a long to the stream.
|
void |
writeObject(java.lang.Object obj)
Writes the next object.
|
void |
writeShort(short s)
Writes a short to the stream.
|
void |
writeString(java.lang.String s)
Writes a string to the stream.
|
acknowledge, checkBodyReadable, checkBodyWriteable, checkHeaderWriteable, checkPropertyWriteable, clearProperties, copy, getBooleanProperty, getByteProperty, getDoubleProperty, getFloatProperty, getIntProperty, getJMSCorrelationID, getJMSCorrelationIDAsBytes, getJMSDeliveryMode, getJMSDestination, getJMSExpiration, getJMSMessageID, getJMSPriority, getJMSRedelivered, getJMSReplyTo, getJMSTimestamp, getJMSType, getLongProperty, getObjectProperty, getProperties, getPropertyNames, getSequence, getShortProperty, getStringProperty, isReserved, propertiesToInputStream, propertyExists, readProperties, setBodyReadOnly, setBooleanProperty, setByteProperty, setDoubleProperty, setFloatProperty, setIntProperty, setJMSCorrelationID, setJMSCorrelationIDAsBytes, setJMSDeliveryMode, setJMSDestination, setJMSExpiration, setJMSMessageID, setJMSPriority, setJMSRedelivered, setJMSReplyTo, setJMSTimestamp, setJMSType, setLongProperty, setObjectProperty, setSequence, setSession, setShortProperty, setStringProperty, writeBody, writeProperties
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
acknowledge, clearProperties, getBooleanProperty, getByteProperty, getDoubleProperty, getFloatProperty, getIntProperty, getJMSCorrelationID, getJMSCorrelationIDAsBytes, getJMSDeliveryMode, getJMSDestination, getJMSExpiration, getJMSMessageID, getJMSPriority, getJMSRedelivered, getJMSReplyTo, getJMSTimestamp, getJMSType, getLongProperty, getObjectProperty, getPropertyNames, getShortProperty, getStringProperty, propertyExists, setBooleanProperty, setByteProperty, setDoubleProperty, setFloatProperty, setIntProperty, setJMSCorrelationID, setJMSCorrelationIDAsBytes, setJMSDeliveryMode, setJMSDestination, setJMSExpiration, setJMSMessageID, setJMSPriority, setJMSRedelivered, setJMSReplyTo, setJMSTimestamp, setJMSType, setLongProperty, setObjectProperty, setShortProperty, setStringProperty
public MessageType getType()
getType
in class MessageImpl
public void setReceive() throws JMSException
setReceive
in class MessageImpl
JMSException
public void reset() throws JMSException
reset
in interface StreamMessage
JMSException
public boolean readBoolean() throws JMSException
readBoolean
in interface StreamMessage
JMSException
public byte readByte() throws JMSException
readByte
in interface StreamMessage
JMSException
public short readShort() throws JMSException
readShort
in interface StreamMessage
JMSException
public int readInt() throws JMSException
readInt
in interface StreamMessage
JMSException
public long readLong() throws JMSException
readLong
in interface StreamMessage
JMSException
public float readFloat() throws JMSException
readFloat
in interface StreamMessage
JMSException
public double readDouble() throws JMSException
readDouble
in interface StreamMessage
JMSException
public char readChar() throws JMSException
readChar
in interface StreamMessage
JMSException
public java.lang.String readString() throws JMSException
readString
in interface StreamMessage
JMSException
public int readBytes(byte[] value) throws JMSException
readBytes
in interface StreamMessage
JMSException
public java.lang.Object readObject() throws JMSException
readObject
in interface StreamMessage
JMSException
public void clearBody() throws JMSException
clearBody
in interface Message
clearBody
in class MessageImpl
JMSException
public void writeBoolean(boolean b) throws JMSException
writeBoolean
in interface StreamMessage
JMSException
public void writeByte(byte b) throws JMSException
writeByte
in interface StreamMessage
JMSException
public void writeShort(short s) throws JMSException
writeShort
in interface StreamMessage
JMSException
public void writeInt(int i) throws JMSException
writeInt
in interface StreamMessage
JMSException
public void writeLong(long l) throws JMSException
writeLong
in interface StreamMessage
JMSException
public void writeFloat(float f) throws JMSException
writeFloat
in interface StreamMessage
JMSException
public void writeDouble(double d) throws JMSException
writeDouble
in interface StreamMessage
JMSException
public void writeString(java.lang.String s) throws JMSException
writeString
in interface StreamMessage
JMSException
public void writeChar(char ch) throws JMSException
writeChar
in interface StreamMessage
JMSException
public void writeBytes(byte[] buf) throws JMSException
writeBytes
in interface StreamMessage
JMSException
public void writeBytes(byte[] buf, int offset, int length) throws JMSException
writeBytes
in interface StreamMessage
JMSException
public void writeObject(java.lang.Object obj) throws JMSException
writeObject
in interface StreamMessage
JMSException
public MessageImpl copy()
copy
in class MessageImpl
protected void copy(StreamMessageImpl newMsg)
public java.io.InputStream bodyToInputStream() throws java.io.IOException
bodyToInputStream
in class MessageImpl
java.io.IOException
public void readBody(java.io.InputStream is) throws java.io.IOException, JMSException
readBody
in class MessageImpl
java.io.IOException
JMSException
public java.lang.String toString()
toString
in class MessageImpl