java.lang.Object com.ibm.broker.config.proxy.SubscriptionParameters.MQ
public static class SubscriptionParameters.MQ
extends Object
This class contains the set of parameters that can be set on a SubscriptionQuery object to query a brokers MQ subscriptions. These parameters are specific to the MQ transport. An example of it use is given below:
... SubscriptionQuery sq = bp.createSubscriptionQuery(); byte[] correlId = new byte[24]; Arrays.fill(correlId, (byte)6); sq.setBytes(SubscriptionParameters.MQ.CORRELID, correlId); sq.setString(SubscriptionParameters.MQ.QUEUEMANAGER, "QM"); sq.setString(SubscriptionParameters.MQ.QUEUE, "Q");
Field | Description |
---|---|
CORRELID | The CorrelId of the subscription. |
QUEUE | The queue of the subscription. |
QUEUEMANAGER | The queue manager of the subscription. |
SUBSCRIPTIONPOINT | The Subscription point of the subscription. |
Constructor | Description |
---|---|
SubscriptionParameters.MQ() |
public static final java.lang.String CORRELIDThe CorrelId of the subscription. The parameter value must be of type byte[]
public static final java.lang.String QUEUEThe queue of the subscription. The parameter value must be of type String
public static final java.lang.String QUEUEMANAGERThe queue manager of the subscription. The parameter value must be of type String
public static final java.lang.String SUBSCRIPTIONPOINTThe Subscription point of the subscription. The parameter value must be of type String
public SubscriptionParameters.MQ()