Package | Description |
---|---|
com.bea.httppubsub |
Provides interfaces and classes for the WebLogic HTTP Publish-Subscribe server.
|
Modifier and Type | Method | Description |
---|---|---|
static Channel.ChannelPattern |
Channel.ChannelPattern.getPattern(java.lang.String url) |
Get the ChannelPattern from the given url
|
static Channel.ChannelPattern |
Channel.ChannelPattern.valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static Channel.ChannelPattern[] |
Channel.ChannelPattern.values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method | Description |
---|---|---|
java.util.List<Client> |
Channel.getClients(Channel.ChannelPattern pattern) |
Return list of clients subscribed this channel or its
children, depending on pattern parameter passed in.
|
void |
Channel.publish(Client client,
BayeuxMessage message,
Channel.ChannelPattern pattern) |
Publish to this channel or its child channels with specified pattern.
|
void |
Channel.subscribe(Client client,
Channel.ChannelPattern pattern) |
Subscribe to this channel or its child channels with specified pattern.
|
void |
Channel.unsubscribe(Client client,
Channel.ChannelPattern pattern) |
Unsubscribe from this channel.
|