<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN""http://www.w3.org/TR/REC-html40/loose.dtd">

Oracle® Streams Advanced Queuing Java API Reference
Release 1 (10.1)

B12023-01

oracle.jms
Class AQjmsMessage

java.lang.Object
  |
  +--oracle.jms.AQjmsMessage
All Implemented Interfaces:
Message
Direct Known Subclasses:
AQjmsAdtMessage, AQjmsBytesMessage, AQjmsMapMessage, AQjmsObjectMessage, AQjmsStreamMessage, AQjmsTextMessage

public class AQjmsMessage
extends java.lang.Object
implements Message

Oracle class implementing javax.jms.Message


Field Summary

 

Fields inherited from interface javax.jms.Message
DEFAULT_DELIVERY_MODE, DEFAULT_PRIORITY, DEFAULT_TIME_TO_LIVE

 

Method Summary
 void acknowledge()
          Acknowlege message receipt when using the CLIENT_ACKNOWLEDGE mode
 void clearBody()
          Clear out the message body.
 void clearProperties()
          Clear a message's properties.
protected  void closeContainer()
           
 int getAttempts()
          Get the retry count for the message
 boolean getBooleanProperty(java.lang.String name)
          Return the boolean property value with the given name.
 byte getByteProperty(java.lang.String name)
          Return the byte property value with the given name.
 double getDoubleProperty(java.lang.String name)
          Return the double property value with the given name.
 float getFloatProperty(java.lang.String name)
          Return the float property value with the given name.
 int getIntProperty(java.lang.String name)
          Return the integer property value with the given name.
 java.lang.String getJMSCorrelationID()
          Get the correlation ID for the message.
 byte[] getJMSCorrelationIDAsBytes()
          Get the correlation ID as an array of bytes for the message.
 int getJMSDeliveryMode()
          Get the delivery mode for this message.
 javax.jms.Destination getJMSDestination()
          Get the destination for this message.
 long getJMSExpiration()
          Get the message's expiration value.
 java.lang.String getJMSMessageID()
          Get the message ID.
 byte[] getJMSMessageIDAsBytes()
          Get the message ID.
 int getJMSPriority()
          Get the message priority.
 boolean getJMSRedelivered()
          Get an indication of whether this message is being redelivered.
 javax.jms.Destination getJMSReplyTo()
          Get the replyTo field for this message
 long getJMSTimestamp()
          Get the message timestamp.
 java.lang.String getJMSType()
          Get the message type.
 long getLongProperty(java.lang.String name)
          Return the long property value with the given name.
protected  oracle.sql.ORAData getMessageCont()
           
 java.lang.Object getObjectProperty(java.lang.String name)
          Return the Java object property value with the given name.
 java.util.Enumeration getPropertyNames()
          Return an Enumeration of all the property names.
 oracle.jms.AQjmsAgent getSenderID()
          Get the message's senderID.
 short getShortProperty(java.lang.String name)
          Return the short property value with the given name.
 java.lang.String getStringProperty(java.lang.String name)
          Return the String property value with the given name.
 java.util.Enumeration getUserPropertyNames()
          Return a enumeration of user property names set on this message
protected  void populateMessageContainer(oracle.jdbc.OracleConnection db_conn, boolean usetemplob)
           
 boolean propertyExists(java.lang.String name)
          Check if a property value exists.
 void setBooleanProperty(java.lang.String name, boolean value)
          Set a boolean property value with the given name, into the Message.
 void setByteProperty(java.lang.String name, byte value)
          Set a byte property value with the given name, into the Message.
 void setDoubleProperty(java.lang.String name, double value)
          Set a double property value with the given name, into the Message.
 void setFloatProperty(java.lang.String name, float value)
          Set a float property value with the given name, into the Message.
 void setIntProperty(java.lang.String name, int value)
          Set an integer property value with the given name, into the Message.
 void setJMSCorrelationID(java.lang.String correlationID)
          Set the correlation ID for the message.
 void setJMSCorrelationIDAsBytes(byte[] correlationID)
          Set the correlation ID as an array of bytes for the message.
 void setJMSDeliveryMode(int deliveryMode)
          Set the delivery mode for this message.
 void setJMSDestination(javax.jms.Destination destination)
          Set the destination for this message.
 void setJMSExpiration(long expiration)
          Set the message's expiration value Providers set this field when a message is sent.
 void setJMSMessageID(java.lang.String id)
          Set the message ID.
 void setJMSPriority(int priority)
          Set the priority for this message.
 void setJMSRedelivered(boolean redelivered)
          Set to indicate whether this message is being redelivered.
 void setJMSReplyTo(javax.jms.Destination replyTo)
          Set where a reply to this message should be sent.
 void setJMSTimestamp(long timestamp)
          Set the message timestamp.
 void setJMSType(java.lang.String type)
          Set the message type.
 void setLongProperty(java.lang.String name, long value)
          Set a long property value with the given name, into the Message.
 void setObjectProperty(java.lang.String name, java.lang.Object value)
          Set a Java object property value with the given name, into the Message.
 void setSenderID(oracle.jms.AQjmsAgent sender)
          Set the message's senderID.
 void setShortProperty(java.lang.String name, short value)
          Set a short property value with the given name, into the Message.
 void setStringProperty(java.lang.String name, java.lang.String value)
          Set a String property value with the given name, into the Message.
protected  void write_lob(java.sql.Connection db_conn, java.lang.String q_table, byte[] msg_id, boolean gen_pload, boolean is_anydata_dest)
           

 

Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

 

Method Detail

getJMSMessageID

public java.lang.String getJMSMessageID()
                                 throws JMSException
Get the message ID. The messageID header field contains a value that uniquely identifies each message sent by a provider. When the send method returns it contains a provider-assigned value. All JMSMessageID string values start with the prefix `ID:'
Specified by:
getJMSMessageID in interface Message
Returns:
the message ID as a string (prefixed with 'ID:')
Throws:
JMSException - if JMS fails to get the message Id due to internal JMS error.
See Also:
Message.setJMSMessageID(String), MessageProducer.setDisableMessageID(boolean)

getJMSMessageIDAsBytes

public byte[] getJMSMessageIDAsBytes()
                              throws JMSException
Get the message ID.
Returns:
the message ID as a byte array
Throws:
JMSException - if JMS fails to get the message Id due to internal JMS error.

setJMSMessageID

public void setJMSMessageID(java.lang.String id)
                     throws JMSException
Set the message ID. Providers set this field when a message is sent.
Specified by:
setJMSMessageID in interface Message
Parameters:
id - the ID of the message
Throws:
JMSException - if JMS fails to set the message Id due to internal JMS error.
See Also:
Message.getJMSMessageID()

getJMSTimestamp

public long getJMSTimestamp()
                     throws JMSException
Get the message timestamp. The JMSTimestamp header field contains the time a message was handed off to a provider to be sent. When a message is sent, JMSTimestamp is ignored. When the send is complete - this method will contain the time the message was enqueued.
Specified by:
getJMSTimestamp in interface Message
Returns:
timestamp (format is a normal Java millis time value)
Throws:
JMSException - if JMS fails to get the Timestamp
See Also:
Message.setJMSTimestamp(long), MessageProducer.setDisableMessageTimestamp(boolean)

setJMSTimestamp

public void setJMSTimestamp(long timestamp)
                     throws JMSException
Set the message timestamp. Providers set this field when a message is sent.
Specified by:
setJMSTimestamp in interface Message
Parameters:
timestamp - the timestamp for this message
Throws:
JMSException - if JMS fails to set the timestamp due to some internal JMS error.
See Also:
Message.getJMSTimestamp()

getJMSCorrelationIDAsBytes

public byte[] getJMSCorrelationIDAsBytes()
                                  throws JMSException
Get the correlation ID as an array of bytes for the message.
Specified by:
getJMSCorrelationIDAsBytes in interface Message
Returns:
the correlation ID of a message as an array of bytes.
Throws:
JMSException - if JMS fails to get correlationId due to some internal JMS error.
See Also:
Message.setJMSCorrelationID(String), Message.getJMSCorrelationID(), Message.setJMSCorrelationIDAsBytes(byte[])

setJMSCorrelationIDAsBytes

public void setJMSCorrelationIDAsBytes(byte[] correlationID)
                                throws JMSException
Set the correlation ID as an array of bytes for the message.
Specified by:
setJMSCorrelationIDAsBytes in interface Message
Parameters:
correlationID - the correlation ID value as an array of bytes.
Throws:
JMSException - if JMS fails to set correlationId due to some internal JMS error.
See Also:
Message.setJMSCorrelationID(String), Message.getJMSCorrelationID(), Message.getJMSCorrelationIDAsBytes()

setJMSCorrelationID

public void setJMSCorrelationID(java.lang.String correlationID)
                         throws JMSException
Set the correlation ID for the message. A client can use the JMSCorrelationID header field to link one message with another.
Specified by:
setJMSCorrelationID in interface Message
Parameters:
correlationID - the message ID of a message being referred to.
Throws:
JMSException - if JMS fails to set correlationId due to some internal JMS error.
See Also:
Message.getJMSCorrelationID(), Message.getJMSCorrelationIDAsBytes(), Message.setJMSCorrelationIDAsBytes(byte[])

getJMSCorrelationID

public java.lang.String getJMSCorrelationID()
                                     throws JMSException
Get the correlation ID for the message.
Specified by:
getJMSCorrelationID in interface Message
Returns:
the correlation ID of a message as a String.
Throws:
JMSException - if JMS fails to get correlationId due to some internal JMS error.
See Also:
Message.setJMSCorrelationID(String), Message.getJMSCorrelationIDAsBytes(), Message.setJMSCorrelationIDAsBytes(byte[])

getJMSReplyTo

public javax.jms.Destination getJMSReplyTo()
                                    throws JMSException
Get the replyTo field for this message
Specified by:
getJMSReplyTo in interface Message
Returns:
replyTo destination (the format is a AQjmsAgent)
Throws:
JMSException - if the JMS provider fails to get the JMSReplyTo destination due to some internal error.
See Also:
Message.setJMSReplyTo(Destination)

setJMSReplyTo

public void setJMSReplyTo(javax.jms.Destination replyTo)
                   throws JMSException
Set where a reply to this message should be sent.
Specified by:
setJMSReplyTo in interface Message
Parameters:
replyTo - where to send a response to this message. The destination must be specified as an AQjmsAgent (with consumer_name and queue/topic address)
Throws:
JMSException - if JMS fails to set ReplyTo Destination due to some internal JMS error.
See Also:
Message.getJMSReplyTo()

getJMSDestination

public javax.jms.Destination getJMSDestination()
                                        throws JMSException
Get the destination for this message. The destination field contains the destination to which the message is being sent. When a message is sent this value is ignored. After completion of the send method it holds the destination specified by the send. When a message is received, its destination value must be equivalent to the value assigned when it was sent.
Specified by:
getJMSDestination in interface Message
Returns:
the destination of this message.
Throws:
JMSException - if JMS fails to get JMS Destination due to some internal JMS error.
See Also:
Message.setJMSDestination(Destination)

setJMSDestination

public void setJMSDestination(javax.jms.Destination destination)
                       throws JMSException
Set the destination for this message. Providers set this field when a message is sent.
Specified by:
setJMSDestination in interface Message
Parameters:
destination - the destination for this message.
Throws:
JMSException - if JMS fails to set JMS Destination due to some internal JMS error.
See Also:
Message.getJMSDestination()

getJMSDeliveryMode

public int getJMSDeliveryMode()
                       throws JMSException
Get the delivery mode for this message.
Specified by:
getJMSDeliveryMode in interface Message
Returns:
the delivery mode of this message.
Throws:
JMSException - if JMS fails to get JMS DeliveryMode due to some internal JMS error.
See Also:
Message.setJMSDeliveryMode(int), DeliveryMode

setJMSDeliveryMode

public void setJMSDeliveryMode(int deliveryMode)
                        throws JMSException
Set the delivery mode for this message. Providers set this field when a message is sent.
Specified by:
setJMSDeliveryMode in interface Message
Parameters:
deliveryMode - the delivery mode for this message.
Throws:
JMSException - if JMS fails to set JMS DeliveryMode due to some internal JMS error.
See Also:
Message.getJMSDeliveryMode(), DeliveryMode

getJMSRedelivered

public boolean getJMSRedelivered()
                          throws JMSException
Get an indication of whether this message is being redelivered.

If a client receives a message with the redelivered indicator set, it is likely, but not guaranteed, that this message was delivered to the client earlier but the client did not commit the transaction

Specified by:
getJMSRedelivered in interface Message
Returns:
set to true if this message is being redelivered.
Throws:
JMSException - if JMS fails to get JMS Redelivered flag due to some internal JMS error.
See Also:
Message.setJMSRedelivered(boolean)

setJMSRedelivered

public void setJMSRedelivered(boolean redelivered)
                       throws JMSException
Set to indicate whether this message is being redelivered. This field is set at the time the message is delivered.
Specified by:
setJMSRedelivered in interface Message
Parameters:
redelivered - an indication of whether this message is being redelivered.
Throws:
JMSException - if JMS fails to set JMS Redelivered flag due to some internal JMS error.
See Also:
Message.getJMSRedelivered()

getJMSType

public java.lang.String getJMSType()
                            throws JMSException
Get the message type.
Specified by:
getJMSType in interface Message
Returns:
the message type
Throws:
JMSException - if JMS fails to get JMS message type due to some internal JMS error.
See Also:
Message.setJMSType(String)

setJMSType

public void setJMSType(java.lang.String type)
                throws JMSException
Set the message type.
Specified by:
setJMSType in interface Message
Parameters:
type - of the message
Throws:
JMSException - if JMS fails to set JMS message type due to some internal JMS error.
See Also:
Message.getJMSType()

getJMSExpiration

public long getJMSExpiration()
                      throws JMSException
Get the message's expiration value. When a message is sent, expiration is left unassigned. After completion of the send method, it holds the expiration time of the message. This is the sum of the time-to-live value specified by the client and the GMT at the time of the send. If the time-to-live is specified as zero, expiration is set to zero which indicates the message does not expire. When a message's expiration time is reached, the message is moved to the exception queue corresponding to the destination queue/topic
Specified by:
getJMSExpiration in interface Message
Returns:
the time the message expires. It is the sum of the time-to-live value specified by the client, and the GMT at the time of the send.
Throws:
JMSException - if JMS fails to get JMS message expiration due to some internal JMS error.
See Also:
Message.setJMSExpiration(long)

setJMSExpiration

public void setJMSExpiration(long expiration)
                      throws JMSException
Set the message's expiration value Providers set this field when a message is sent.
Specified by:
setJMSExpiration in interface Message
Parameters:
expiration - the message's expiration time
Throws:
JMSException - if JMS fails to set JMS message expiration due to some internal JMS error.
See Also:
Message.getJMSExpiration()

getJMSPriority

public int getJMSPriority()
                   throws JMSException
Get the message priority. JMS defines a ten level priority value with 0 as the lowest priority and 9 as the highest.
Specified by:
getJMSPriority in interface Message
Returns:
the default message priority
Throws:
JMSException - if the JMS provider fails to get the message priority due to some internal error.
See Also:
Message.setJMSPriority(int)

setJMSPriority

public void setJMSPriority(int priority)
                    throws JMSException
Set the priority for this message. Providers set this field when a message is sent.
Specified by:
setJMSPriority in interface Message
Parameters:
priority - the priority of this message
Throws:
JMSException - if JMS fails to set JMS message priority due to some internal JMS error.
See Also:
Message.getJMSPriority()

clearProperties

public void clearProperties()
                     throws JMSException
Clear a message's properties.
Specified by:
clearProperties in interface Message
Throws:
JMSException - if JMS fails to clear JMS message properties due to some internal JMS error.

propertyExists

public boolean propertyExists(java.lang.String name)
                       throws JMSException
Check if a property value exists.
Specified by:
propertyExists in interface Message
Parameters:
name - the name of the property to test
Returns:
true if the property does exist.
Throws:
JMSException - if JMS fails to check if property exists due to some internal JMS error.

getBooleanProperty

public boolean getBooleanProperty(java.lang.String name)
                           throws JMSException
Return the boolean property value with the given name.
Specified by:
getBooleanProperty in interface Message
Parameters:
name - the name of the boolean property
Returns:
the boolean property value with the given name.
Throws:
JMSException - if JMS fails to get Property
MessageFormatException - if this type conversion is invalid.

getByteProperty

public byte getByteProperty(java.lang.String name)
                     throws JMSException
Return the byte property value with the given name.
Specified by:
getByteProperty in interface Message
Parameters:
name - the name of the byte property
Returns:
the byte property value with the given name.
Throws:
JMSException - if JMS fails to get Property
MessageFormatException - if this type conversion is invalid.

getShortProperty

public short getShortProperty(java.lang.String name)
                       throws JMSException
Return the short property value with the given name.
Specified by:
getShortProperty in interface Message
Parameters:
name - the name of the short property
Returns:
the short property value with the given name.
Throws:
JMSException - if JMS fails to get Property
MessageFormatException - if this type conversion is invalid.

getIntProperty

public int getIntProperty(java.lang.String name)
                   throws JMSException
Return the integer property value with the given name.
Specified by:
getIntProperty in interface Message
Parameters:
name - the name of the integer property
Returns:
the integer property value with the given name.
Throws:
JMSException - if JMS fails to get Property
MessageFormatException - if this type conversion is invalid.

getLongProperty

public long getLongProperty(java.lang.String name)
                     throws JMSException
Return the long property value with the given name.
Specified by:
getLongProperty in interface Message
Parameters:
name - the name of the long property
Returns:
the long property value with the given name.
Throws:
JMSException - if JMS fails to get Property
MessageFormatException - if this type conversion is invalid.

getFloatProperty

public float getFloatProperty(java.lang.String name)
                       throws JMSException
Return the float property value with the given name.
Specified by:
getFloatProperty in interface Message
Parameters:
name - the name of the float property
Returns:
the float property value with the given name.
Throws:
JMSException - if JMS fails to get Property
MessageFormatException - if this type conversion is invalid.

getDoubleProperty

public double getDoubleProperty(java.lang.String name)
                         throws JMSException
Return the double property value with the given name.
Specified by:
getDoubleProperty in interface Message
Parameters:
name - the name of the double property
Returns:
the double property value with the given name.
Throws:
JMSException - if JMS fails to get Property
MessageFormatException - if this type conversion is invalid.

getStringProperty

public java.lang.String getStringProperty(java.lang.String name)
                                   throws JMSException
Return the String property value with the given name.
Specified by:
getStringProperty in interface Message
Parameters:
name - the name of the String property
Returns:
the String property value with the given name. If there is no property by this name, a null value is returned.
Throws:
JMSException - if JMS fails to get Property
MessageFormatException - if this type conversion is invalid.

getObjectProperty

public java.lang.Object getObjectProperty(java.lang.String name)
                                   throws JMSException
Return the Java object property value with the given name. Note that this method can be used to return in objectified format, an object that had been stored as a property in the Message with the equivalent setObject method call, or it's equivalent primitive set<type> method.
Specified by:
getObjectProperty in interface Message
Parameters:
name - the name of the Java object property
Returns:
the Java object property value with the given name, in objectified format (ie. if it set as an int, then a Integer is returned). If there is no property by this name, a null value is returned.
Throws:
JMSException - if JMS fails to get Property due to some internal JMS error.

getPropertyNames

public java.util.Enumeration getPropertyNames()
                                       throws JMSException
Return an Enumeration of all the property names.
Specified by:
getPropertyNames in interface Message
Returns:
an enumeration of all the names of property values.
Throws:
JMSException - if JMS fails to get Property names due to some internal JMS error.

getUserPropertyNames

public java.util.Enumeration getUserPropertyNames()
                                           throws JMSException
Return a enumeration of user property names set on this message
Returns:
an enumeration of user properties
JMSException

setBooleanProperty

public void setBooleanProperty(java.lang.String name,
                               boolean value)
                        throws JMSException
Set a boolean property value with the given name, into the Message.
Specified by:
setBooleanProperty in interface Message
Parameters:
name - the name of the boolean property
value - the boolean property value to set in the Message.
Throws:
JMSException - if JMS fails to set Property
MessageNotWriteableException - if properties are read-only

setByteProperty

public void setByteProperty(java.lang.String name,
                            byte value)
                     throws JMSException
Set a byte property value with the given name, into the Message.
Specified by:
setByteProperty in interface Message
Parameters:
name - the name of the byte property
value - the byte property value to set in the Message.
Throws:
JMSException - if JMS fails to set Property
MessageNotWriteableException - if properties are read-only

setShortProperty

public void setShortProperty(java.lang.String name,
                             short value)
                      throws JMSException
Set a short property value with the given name, into the Message.
Specified by:
setShortProperty in interface Message
Parameters:
name - the name of the short property
value - the short property value to set in the Message.
Throws:
JMSException - if JMS fails to set Property
MessageNotWriteableException - if properties are read-only

setIntProperty

public void setIntProperty(java.lang.String name,
                           int value)
                    throws JMSException
Set an integer property value with the given name, into the Message.
Specified by:
setIntProperty in interface Message
Parameters:
name - the name of the integer property
value - the integer property value to set in the Message.
Throws:
JMSException - if JMS fails to set Property
MessageNotWriteableException - if properties are read-only

setLongProperty

public void setLongProperty(java.lang.String name,
                            long value)
                     throws JMSException
Set a long property value with the given name, into the Message.
Specified by:
setLongProperty in interface Message
Parameters:
name - the name of the long property
value - the long property value to set in the Message.
Throws:
JMSException - if JMS fails to set Property
MessageNotWriteableException - if properties are read-only

setFloatProperty

public void setFloatProperty(java.lang.String name,
                             float value)
                      throws JMSException
Set a float property value with the given name, into the Message.
Specified by:
setFloatProperty in interface Message
Parameters:
name - the name of the float property
value - the float property value to set in the Message.
Throws:
JMSException - if JMS fails to set Property
MessageNotWriteableException - if properties are read-only

setDoubleProperty

public void setDoubleProperty(java.lang.String name,
                              double value)
                       throws JMSException
Set a double property value with the given name, into the Message.
Specified by:
setDoubleProperty in interface Message
Parameters:
name - the name of the double property
value - the double property value to set in the Message.
Throws:
JMSException - if JMS fails to set Property
MessageNotWriteableException - if properties are read-only

setStringProperty

public void setStringProperty(java.lang.String name,
                              java.lang.String value)
                       throws JMSException
Set a String property value with the given name, into the Message.
Specified by:
setStringProperty in interface Message
Parameters:
name - the name of the String property
value - the String property value to set in the Message.
Throws:
JMSException - if JMS fails to set Property
MessageNotWriteableException - if properties are read-only

setObjectProperty

public void setObjectProperty(java.lang.String name,
                              java.lang.Object value)
                       throws JMSException
Set a Java object property value with the given name, into the Message. Note that this method only works for the objectified primitive object types (Integer, Double, Long ...) and String's.
Specified by:
setObjectProperty in interface Message
Parameters:
name - the name of the Java object property.
value - the Java object property value to set in the Message.
Throws:
JMSException - if JMS fails to set Property
MessageFormatException - if object is invalid
MessageNotWriteableException - if properties are read-only

acknowledge

public void acknowledge()
                 throws JMSException
Acknowlege message receipt when using the CLIENT_ACKNOWLEDGE mode
Specified by:
acknowledge in interface Message
Throws:
AQjmsException - if SQL exceptions occur during transaction commit
JMSException - if the JMS provider fails to acknowledge the messages due to some internal error.
See Also:
Session.CLIENT_ACKNOWLEDGE

clearBody

public void clearBody()
               throws JMSException
Clear out the message body. All other parts of the message are left untouched.
Specified by:
clearBody in interface Message
Throws:
JMSException - if JMS fails to clear message

getSenderID

public oracle.jms.AQjmsAgent getSenderID()
                                  throws JMSException
Get the message's senderID. This value is available only if it was set by the sender before sending the message
Returns:
AQjmsAgent representing sender
Throws:
JMSException - if JMS fails to get SenderID

setSenderID

public void setSenderID(oracle.jms.AQjmsAgent sender)
                 throws JMSException
Set the message's senderID.
Returns:
AQjmsAgent representing sender
Throws:
JMSException - if JMS fails to set SenderID

getAttempts

public int getAttempts()
                throws JMSException
Get the retry count for the message
JMSException

getMessageCont

protected oracle.sql.ORAData getMessageCont()

populateMessageContainer

protected void populateMessageContainer(oracle.jdbc.OracleConnection db_conn,
                                        boolean usetemplob)
                                 throws JMSException,
                                        java.sql.SQLException
JMSException
java.sql.SQLException

write_lob

protected void write_lob(java.sql.Connection db_conn,
                         java.lang.String q_table,
                         byte[] msg_id,
                         boolean gen_pload,
                         boolean is_anydata_dest)
                  throws JMSException
JMSException

closeContainer

protected void closeContainer()

Oracle® Streams Advanced Queuing Java API Reference
Release 1 (10.1)

B12023-01

Copyright © 2003, Oracle. All Rights Reserved.