WebSphere:*,type=SIBRemoteQueuePoint
MBean SIBRemoteQueuePoint
Management interface for a SIBRemoteQueuePoint
Attribute Summary | |
---|---|
java.lang.String | id An internally generated ID for the object |
java.lang.String | name The name of the object |
java.lang.String | remoteMessagingEngineUuid The Uuid of the remote messaging engine where the queue point is localized |
Operation Summary | |
---|---|
SIBRemoteConsumerReceiver | getRemoteConsumerReceiver() Return the SIBRemoteConsumerReceiver for this remote queue point that represents all non-gathering consumers. |
SIBRemoteConsumerReceiver[] | listRemoteConsumerReceivers() Return a list of all SIBRemoteConsumerReceivers for this remote queue point. |
java.lang.Long | getRemoteConsumerReceiversCompletedMessageRequests() Return the number of completed message requests for all SIBRemoteConsumerReceivers for this remote queue point. |
void | flush( Deprecated.This method is deprecated. |
void | cancelAllRequests( Cancel all message requests |
void | requestFlush( Deprecated.This method is deprecated. |
SIBRemoteMessageRequest[] | listRemoteMessageRequests( List all current remote message requests |
void | remove( Deprecated.This method is deprecated. |
SIBOutboundTransmitter | getOutboundTransmitter() Return the SIBOutboundTransmitter for this remote queue point. |
SIBOutboundTransmitterStream[] | getStreams( Return the list of outbound transmitter streams |
SIBTransmitMessage[] | listTransmitMessages( List the transmit messages that are on this remote queue point destined for the localising queue point |
SIBTransmitMessageDetail | getTransmitMessageDetail( Get detailed information on a specific transmit message on this remote queue point |
byte[] | getTransmitMessageData( Return data from a specific transmit message on a specific remote queue point |
void | deleteAllTransmitMessages() Deletes all the transmit messages on this remote queue point |
void | moveAllTransmitMessagesToExceptionDestination() Moves all the transmit messages on this remote queue point to the exception destination |
void | reallocateAllTransmitMessages() Reallocate all transmit messages |
void | deleteTransmitMessage( Deletes the specified transmit message from this remote queue point |
void | moveTransmitMessageToExceptionDestination( Moves the specified transmit message from this remote queue point to the exception destination |
void | flush( Deprecated.This method is deprecated. |
void | clearMessages( Deprecated.This method is deprecated. |
SIBTransmitMessage[] | listTransmitMessages( Lists current transmit messages |
void | remove( Deprecated.This method is deprecated. |
Notification Summary | |
---|---|
SIB.remote.messagepoint.depth.threshold.reached The number of messages stored at a remote queue point has made a depth change that causes messages to either start flowing or stop flowing into it. |
Attribute Detail |
---|
public java.lang.String id
An internally generated ID for the object
Since:
6.0
Getter:
administrator
operator
configurator
monitor
deployer
adminsecuritymanager
public java.lang.String name
The name of the object
Since:
6.0
Getter:
administrator
operator
configurator
monitor
deployer
adminsecuritymanager
public java.lang.String remoteMessagingEngineUuid
The Uuid of the remote messaging engine where the queue point is localized
Since:
6.0.2
Getter:
administrator
operator
configurator
monitor
deployer
adminsecuritymanager
Operation Detail |
---|
public SIBRemoteConsumerReceiver getRemoteConsumerReceiver()
Return the SIBRemoteConsumerReceiver for this remote queue point that represents all non-gathering consumers. This object will exist if a remote get has been invoked against the target queue point.
administrator
operator
configurator
monitor
deployer
adminsecuritymanager
public SIBRemoteConsumerReceiver[] listRemoteConsumerReceivers()
Return a list of all SIBRemoteConsumerReceivers for this remote queue point. One object will exist per category of remote consumers, remote consumers are categorized based on whether they are gathering messages from multiple queue points or not. If they are gathering messages they are categorized further based on the SIB destination used to determine the set of queue points to gather from. See the SIBRemoteConsumerReceiver interface for further details.
Since:
7.0
administrator
operator
configurator
monitor
deployer
adminsecuritymanager
public java.lang.Long getRemoteConsumerReceiversCompletedMessageRequests()
Return the number of completed message requests for all SIBRemoteConsumerReceivers for this remote queue point.
Since:
7.0
administrator
operator
configurator
monitor
deployer
adminsecuritymanager
public void flush(
SIBRemoteConsumerReceiver rcr
)
Deprecated.
This method is deprecated.
rcr
-
The object returned from a call to the getRemoteConsumerReceiver operation
administrator
operator
public void cancelAllRequests(
SIBRemoteConsumerReceiver rcr
)
Cancel all message requests
rcr
-
The object returned from a call to the getRemoteConsumerReceiver operation
administrator
operator
public void requestFlush(
SIBRemoteConsumerReceiver rcr,
java.lang.Boolean discard
)
Deprecated.
This method is deprecated.
rcr
-
The object returned from a call to the getRemoteConsumerReceiver operation discard
-
If true, specifies that any indoubt messages should be discarded
administrator
operator
public SIBRemoteMessageRequest[] listRemoteMessageRequests(
SIBRemoteConsumerReceiver rcr
)
List all current remote message requests
rcr
-
The object returned from a call to the getRemoteConsumerReceiver operation
administrator
operator
configurator
monitor
deployer
adminsecuritymanager
public void remove(
SIBRemoteConsumerReceiver rcr,
SIBRemoteMessageRequest rmr,
java.lang.Boolean discard
)
Deprecated.
This method is deprecated.
Remove a specified remote message request.
rcr
-
The object returned from a call to the getRemoteConsumerReceiver operation rmr
-
An object returned from a call to the listRemoteMessageRequests operation discard
-
If true, specifies that any pending messages should be discarded, otherwise they will be sent to the exception destination.
administrator
operator
public SIBOutboundTransmitter getOutboundTransmitter()
Return the SIBOutboundTransmitter for this remote queue point. This object will exist if a remote put has been invoked against the target queue point.
administrator
operator
configurator
monitor
deployer
adminsecuritymanager
public SIBOutboundTransmitterStream[] getStreams(
SIBOutboundTransmitter ot
)
Return the list of outbound transmitter streams
ot
-
The object returned from a call to the getOutboundTransmitter operation
administrator
operator
configurator
monitor
deployer
adminsecuritymanager
public SIBTransmitMessage[] listTransmitMessages(
SIBOutboundTransmitter ot,
SIBOutboundTransmitterStream ots
)
List the transmit messages that are on this remote queue point destined for the localising queue point
ot
-
The object returned from a call to the getOutboundTransmitter operation ots
-
The object returned from a call to the getStreams operation
administrator
operator
configurator
monitor
deployer
adminsecuritymanager
public SIBTransmitMessageDetail getTransmitMessageDetail(
SIBOutboundTransmitter ot,
SIBOutboundTransmitterStream ots,
java.lang.String messageId
)
Get detailed information on a specific transmit message on this remote queue point
ot
-
The object returned from a call to the getOutboundTransmitter operation ots
-
The object returned from a call to the getStreams operation messageId
-
The ID of the Transmit Message as derived from the SIBTransmitMessage class
administrator
operator
configurator
monitor
deployer
adminsecuritymanager
public byte[] getTransmitMessageData(
SIBOutboundTransmitter ot,
SIBOutboundTransmitterStream ots,
java.lang.String messageId,
java.lang.Integer size
)
Return data from a specific transmit message on a specific remote queue point
ot
-
The object returned from a call to the getOutboundTransmitter operation ots
-
The object returned from a call to the getStreams operation messageId
-
The ID of the Transmit Message as derived from the SIBTransmitMessage class size
-
The number of bytes to return
administrator
operator
configurator
monitor
deployer
adminsecuritymanager
public void deleteAllTransmitMessages()
Deletes all the transmit messages on this remote queue point
administrator
operator
public void moveAllTransmitMessagesToExceptionDestination()
Moves all the transmit messages on this remote queue point to the exception destination
administrator
operator
public void reallocateAllTransmitMessages()
Reallocate all transmit messages
administrator
operator
public void deleteTransmitMessage(
SIBOutboundTransmitter ot,
SIBOutboundTransmitterStream ots,
java.lang.String messageId
)
Deletes the specified transmit message from this remote queue point
ot
-
The object returned from a call to the getOutboundTransmitter operation ots
-
The object returned from a call to the getStreams operation messageId
-
The ID of the Transmit Message as derived from the SIBTransmitMessage class
administrator
operator
public void moveTransmitMessageToExceptionDestination(
SIBOutboundTransmitter ot,
SIBOutboundTransmitterStream ots,
java.lang.String messageId
)
Moves the specified transmit message from this remote queue point to the exception destination
ot
-
The object returned from a call to the getOutboundTransmitter operation ots
-
The object returned from a call to the getStreams operation messageId
-
The ID of the Transmit Message as derived from the SIBTransmitMessage class
administrator
operator
public void flush(
SIBOutboundTransmitter ot
)
Deprecated.
This method is deprecated.
Flush
ot
-
The object returned from a call to the getOutboundTransmitter operation
administrator
operator
public void clearMessages(
SIBOutboundTransmitter ot,
java.lang.Boolean discard
)
Deprecated.
This method is deprecated.
Clear messages at source
ot
-
The object returned from a call to the getOutboundTransmitter operation discard
-
If true, specifies that any indoubt messages should be discarded
administrator
operator
public SIBTransmitMessage[] listTransmitMessages(
SIBOutboundTransmitter ot
)
Lists current transmit messages
ot
-
The object returned from a call to the getOutboundTransmitter operation
administrator
operator
configurator
monitor
deployer
adminsecuritymanager
public void remove(
SIBOutboundTransmitter ot,
SIBTransmitMessage tm,
java.lang.Boolean discard
)
Deprecated.
This method is deprecated.
Remove a specified transmit message request.
ot
-
The object returned from a call to the getOutboundTransmitter operation tm
-
An object returned from a call to the listTransmitMessages operation discard
-
If true, specifies that any pending messages should be discarded, Otherwise, they will be sent to the Exception Destination.
administrator
operator
Notification Detail |
---|
The number of messages stored at a remote queue point has made a depth change that causes messages to either start flowing or stop flowing into it. This type of event has the following set of properties ##STANDARD## this.bus.name, this.bus.uuid, this.messaging.engine.name, this.messaging.engine.uuid ##SPECIFIC## destination.name, destination.UUID, localizing.messaging.engine.uuid, depth.threshold.reached (which may be depth.threshold.reached.high or depth.threshold.reached.low), messages (Count of messages at the message point)
5
(Warning)