com.ibm.websphere.sib.admin
Interface SIBInboundReceiverStream
-
- All Superinterfaces:
- java.io.Serializable
public interface SIBInboundReceiverStream extends java.io.SerializableThis class specifies the properties of an inbound receiver stream for messages of a certain QoS being received by a messaging engine from a corresponding remote message point.
-
-
Method Summary
Methods Modifier and Type Method and Description longgetActiveMessages()Get the number of messages currently on this stream.longgetLastDeliveredMessage()Get the system ID of the last message delivered on the stream.intgetPriority()Get the priority of this message stream (0-9) .java.lang.StringgetReliability()Get the reliability of this message stream (BestEffortNonPersistent, ExpressNonPersistent, ReliableNonPersistent, Reliablepersistent, AssuredPersistent).java.lang.StringgetState()Get the state of this stream.java.lang.StringgetStreamId()Get the system id of this inbound receiver.
-
-
-
Method Detail
-
getStreamId
java.lang.String getStreamId()
Get the system id of this inbound receiver.- Returns:
- String the system id of the inbound receiver
-
getReliability
java.lang.String getReliability()
Get the reliability of this message stream (BestEffortNonPersistent, ExpressNonPersistent, ReliableNonPersistent, Reliablepersistent, AssuredPersistent).- Returns:
- String The stream reliability.
-
getPriority
int getPriority()
Get the priority of this message stream (0-9) .- Returns:
- int The stream priority (0-9).
-
getActiveMessages
long getActiveMessages()
Get the number of messages currently on this stream.- Returns:
- long Number of message currently on the stream.
-
getLastDeliveredMessage
long getLastDeliveredMessage()
Get the system ID of the last message delivered on the stream.- Returns:
- long ID of last delivered message.
-
getState
java.lang.String getState()
Get the state of this stream.- Returns:
- String
-
-