Package com.ibm.mq
Class MQGetMessageOptions
java.lang.Object
com.ibm.mq.jmqi.JmqiObject
com.ibm.mq.MQGetMessageOptions
public class MQGetMessageOptions
extends com.ibm.mq.jmqi.JmqiObject
This class contains options which control the behaviour of
MQQueue.get().-
Field Summary
FieldsModifier and TypeFieldDescriptioncharWhether the retrieved message is in a group, and if it is, whether it is the last in the group.intSelection criteria that determine which message is retrieved.byte[]A token for use when getting messages.intOptions that control the action of MQQueue.get().The local name of the queue from which the message was retrieved.intThe length in bytes of the message data.charWhether segmentation is allowed for the retrieved message.charWhether the retrieved message is a segment of a logical message.intThe maximum time (in milliseconds) that an MQQueue.get() call waits for a suitable message to arrive.Fields inherited from class com.ibm.mq.jmqi.JmqiObject
COMP_JM, COMP_JN, COMP_JO -
Constructor Summary
ConstructorsConstructorDescriptionConstructs an MQGetMessageOptions object with options set to MQConstants.MQGMO_MO_WAIT, a wait interval of zero, and a blank resolved queue name.MQGetMessageOptions(boolean noReadBack) Constructs an MQGetMessageOptions object with an option on readingoptionsfield. -
Method Summary
Methods inherited from class com.ibm.mq.jmqi.JmqiObject
getJmqiEnvironment
-
Field Details
-
options
public int optionsOptions that control the action of MQQueue.get(). Any or none of the following values can be specified. If more than one option is required the values can combined using either '+' or '|'.MQConstants.MQGMO_WAITMQConstants.MQGMO_NO_WAITMQConstants.MQGMO_SYNCPOINTMQConstants.MQGMO_NO_SYNCPOINT- defaultMQConstants.MQGMO_BROWSE_FIRSTMQConstants.MQGMO_BROWSE_NEXTMQConstants.MQGMO_BROWSE_MSG_UNDER_CURSORMQConstants.MQGMO_MSG_UNDER_CURSORMQConstants.MQGMO_LOCKMQConstants.MQGMO_UNLOCKMQConstants.MQGMO_ACCEPT_TRUNCATED_MSGMQConstants.MQGMO_FAIL_IF_QUIESCINGMQConstants.MQGMO_CONVERT
-
waitInterval
public int waitIntervalThe maximum time (in milliseconds) that an MQQueue.get() call waits for a suitable message to arrive. It is used in conjunction with MQConstants.MQGMO_WAIT. A value of MQConstants.MQWI_UNLIMITED indicates that an unlimited wait is required. -
resolvedQueueName
The local name of the queue from which the message was retrieved. This is the resolved name as set by the queue manager. It is different from the name used to open the queue, if an alias queue or model queue was opened. -
msgToken
public byte[] msgTokenA token for use when getting messages. It is set either by the queue manager or by the application in combination with MQMO_MATCH_MSG_TOKEN. The token is truncated if its size is greater than MQConstants.MQ_MSG_TOKEN_LENGTH. It is ignored if it has been set without the corresponding matchOption being set. If matchOption is set for a platform other than z/OS an attempted get will fail. -
returnedLength
public int returnedLengthThe length in bytes of the message data. It is set by the queue manager to the value returned by the MQGET call. If the queue manager does not support this capability, the value is set to MQConstants.MQRL_UNDEFINED. -
matchOptions
public int matchOptionsSelection criteria that determine which message is retrieved. The following match options can be set: The default value is MQConstants.MQMO_MATCH_MSG_ID | MQConstants.MQMO_MATCH_CORREL_ID. -
groupStatus
public char groupStatusWhether the retrieved message is in a group, and if it is, whether it is the last in the group. Possible values are: -
segmentStatus
public char segmentStatusWhether the retrieved message is a segment of a logical message. If the message is a segment, this field also indicates whether or not it is the last segment. Possible values are: -
segmentation
public char segmentationWhether segmentation is allowed for the retrieved message. Possible values are:
-
-
Constructor Details
-
MQGetMessageOptions
public MQGetMessageOptions()Constructs an MQGetMessageOptions object with options set to MQConstants.MQGMO_MO_WAIT, a wait interval of zero, and a blank resolved queue name. -
MQGetMessageOptions
public MQGetMessageOptions(boolean noReadBack) Constructs an MQGetMessageOptions object with an option on readingoptionsfield. You can use this constructor to save some overheads if your application never needs to read back the options field.- Parameters:
noReadBack- if true , prevents the options MQGMO field from being read back. This means that the overhead of converting it is avoided.
-