NamedEntityBean
, SettableBean
@Deprecated public interface DistributedDestinationMemberBean extends NamedEntityBean
This bean defines common properties of distributed destination members. Distributed destination members can be members of queues or topics.
Modifier and Type | Method | Description |
---|---|---|
java.lang.String |
getPhysicalDestinationName() |
Deprecated.
9.0.0.0 Replaced by
getName |
int |
getWeight() |
Deprecated.
The weight of a distributed destination member is a measure of its ability to handle message load, compared to
the other member destinations in the same distributed set.
|
void |
setPhysicalDestinationName(java.lang.String destination) |
Deprecated.
9.0.0.0 Replaced by
setName |
void |
setWeight(int weight) |
Deprecated.
Sets the weight element.
|
int getWeight()
The weight of a distributed destination member is a measure of its ability to handle message load, compared to the other member destinations in the same distributed set.
void setWeight(int weight) throws java.lang.IllegalArgumentException
Sets the weight element.
weight
- The new weight of this distributed destination memberjava.lang.IllegalArgumentException
getWeight()
@Deprecated java.lang.String getPhysicalDestinationName()
getName
The name of the destination that is to be a member of the distributed destination.
Note that this is the real name of the destination (e.g. the name as retrieved by getName()), not the destination-name element of the destination (e.g. the name as retrieved by getJMSCreateDestinationIdentifier()).
This field is only used by the JMS interop module. All other modules may not set this field. In all other modules the name of the DistributedDestinationMemberBean itself is the name of the queue to be used by this destination
@Deprecated void setPhysicalDestinationName(java.lang.String destination) throws java.lang.IllegalArgumentException
setName
This field is only used by the JMS interop module. All other modules may not set this field. In all other modules the name of the DistributedDestinationMemberBean itself is the name of the queue to be used by this destination
destination
- The name of the destination that is to be a member of the distributed
destinationjava.lang.IllegalArgumentException