Modifier and Type | Method | Description |
---|---|---|
java.util.Set<java.lang.String> |
getListeningPluginChannels() |
Gets a set containing all the Plugin Channels that this client is
listening on.
|
void |
sendPluginMessage(Plugin source,
java.lang.String channel,
byte[] message) |
Sends this recipient a Plugin Message on the specified outgoing
channel.
|
void sendPluginMessage(Plugin source, java.lang.String channel, byte[] message)
The message may not be larger than Messenger.MAX_MESSAGE_SIZE
bytes, and the plugin must be registered to send messages on the
specified channel.
source
- The plugin that sent this message.channel
- The channel to send this message on.message
- The raw message to send.java.lang.IllegalArgumentException
- Thrown if the source plugin is
disabled.java.lang.IllegalArgumentException
- Thrown if source, channel or message
is null.MessageTooLargeException
- Thrown if the message is too big.ChannelNotRegisteredException
- Thrown if the channel is not
registered for this plugin.java.util.Set<java.lang.String> getListeningPluginChannels()
Copyright © 2018. All rights reserved.