MAX_CHANNEL_SIZE, MAX_MESSAGE_SIZE
Constructor | Description |
---|---|
StandardMessenger() |
Modifier and Type | Method | Description |
---|---|---|
void |
dispatchIncomingMessage(Player source,
String channel,
byte[] message) |
Dispatches the specified incoming message to any registered listeners.
|
Set<PluginMessageListenerRegistration> |
getIncomingChannelRegistrations(String channel) |
Gets a set containing all the incoming plugin channel registrations
that are on the requested channel.
|
Set<PluginMessageListenerRegistration> |
getIncomingChannelRegistrations(Plugin plugin) |
Gets a set containing all the incoming plugin channel registrations
that the specified plugin has.
|
Set<PluginMessageListenerRegistration> |
getIncomingChannelRegistrations(Plugin plugin,
String channel) |
Gets a set containing all the incoming plugin channel registrations
that the specified plugin has on the requested channel.
|
Set<String> |
getIncomingChannels() |
Gets a set containing all the incoming plugin channels.
|
Set<String> |
getIncomingChannels(Plugin plugin) |
Gets a set containing all the incoming plugin channels that the
specified plugin is registered for.
|
Set<String> |
getOutgoingChannels() |
Gets a set containing all the outgoing plugin channels.
|
Set<String> |
getOutgoingChannels(Plugin plugin) |
Gets a set containing all the outgoing plugin channels that the
specified plugin is registered to.
|
boolean |
isIncomingChannelRegistered(Plugin plugin,
String channel) |
Checks if the specified plugin has registered to receive incoming
messages through the requested channel.
|
boolean |
isOutgoingChannelRegistered(Plugin plugin,
String channel) |
Checks if the specified plugin has registered to send outgoing messages
through the requested channel.
|
boolean |
isRegistrationValid(PluginMessageListenerRegistration registration) |
Checks if the specified plugin message listener registration is valid.
|
boolean |
isReservedChannel(String channel) |
Checks if the specified channel is a reserved name.
|
PluginMessageListenerRegistration |
registerIncomingPluginChannel(Plugin plugin,
String channel,
PluginMessageListener listener) |
Registers the specific plugin for listening on the requested incoming
plugin channel, allowing it to act upon any plugin messages.
|
void |
registerOutgoingPluginChannel(Plugin plugin,
String channel) |
Registers the specific plugin to the requested outgoing plugin channel,
allowing it to send messages through that channel to any clients.
|
void |
unregisterIncomingPluginChannel(Plugin plugin) |
Unregisters the specific plugin from listening on all plugin channels
through all listeners.
|
void |
unregisterIncomingPluginChannel(Plugin plugin,
String channel) |
Unregisters the specific plugin from listening on the requested
incoming plugin channel, no longer allowing it to act upon any plugin
messages.
|
void |
unregisterIncomingPluginChannel(Plugin plugin,
String channel,
PluginMessageListener listener) |
Unregisters the specific plugin's listener from listening on the
requested incoming plugin channel, no longer allowing it to act upon
any plugin messages.
|
void |
unregisterOutgoingPluginChannel(Plugin plugin) |
Unregisters the specific plugin from all outgoing plugin channels, no
longer allowing it to send any plugin messages.
|
void |
unregisterOutgoingPluginChannel(Plugin plugin,
String channel) |
Unregisters the specific plugin from the requested outgoing plugin
channel, no longer allowing it to send messages through that channel to
any clients.
|
static String |
validateAndCorrectChannel(String channel) |
Deprecated.
not an API method
|
static void |
validateChannel(String channel) |
Deprecated.
not an API method
|
static void |
validatePluginMessage(Messenger messenger,
Plugin source,
String channel,
byte[] message) |
Validates the input of a Plugin Message, ensuring the arguments are all
valid.
|
public boolean isReservedChannel(@NotNull String channel)
Messenger
isReservedChannel
in interface Messenger
channel
- Channel name to check.public void registerOutgoingPluginChannel(@NotNull Plugin plugin, @NotNull String channel)
Messenger
registerOutgoingPluginChannel
in interface Messenger
plugin
- Plugin that wishes to send messages through the channel.channel
- Channel to register.public void unregisterOutgoingPluginChannel(@NotNull Plugin plugin, @NotNull String channel)
Messenger
unregisterOutgoingPluginChannel
in interface Messenger
plugin
- Plugin that no longer wishes to send messages through the
channel.channel
- Channel to unregister.public void unregisterOutgoingPluginChannel(@NotNull Plugin plugin)
Messenger
unregisterOutgoingPluginChannel
in interface Messenger
plugin
- Plugin that no longer wishes to send plugin messages.@NotNull public PluginMessageListenerRegistration registerIncomingPluginChannel(@NotNull Plugin plugin, @NotNull String channel, @NotNull PluginMessageListener listener)
Messenger
registerIncomingPluginChannel
in interface Messenger
plugin
- Plugin that wishes to register to this channel.channel
- Channel to register.listener
- Listener to receive messages on.public void unregisterIncomingPluginChannel(@NotNull Plugin plugin, @NotNull String channel, @NotNull PluginMessageListener listener)
Messenger
unregisterIncomingPluginChannel
in interface Messenger
plugin
- Plugin that wishes to unregister from this channel.channel
- Channel to unregister.listener
- Listener to stop receiving messages on.public void unregisterIncomingPluginChannel(@NotNull Plugin plugin, @NotNull String channel)
Messenger
unregisterIncomingPluginChannel
in interface Messenger
plugin
- Plugin that wishes to unregister from this channel.channel
- Channel to unregister.public void unregisterIncomingPluginChannel(@NotNull Plugin plugin)
Messenger
unregisterIncomingPluginChannel
in interface Messenger
plugin
- Plugin that wishes to unregister from this channel.@NotNull public Set<String> getOutgoingChannels()
Messenger
getOutgoingChannels
in interface Messenger
@NotNull public Set<String> getOutgoingChannels(@NotNull Plugin plugin)
Messenger
getOutgoingChannels
in interface Messenger
plugin
- Plugin to retrieve channels for.@NotNull public Set<String> getIncomingChannels()
Messenger
getIncomingChannels
in interface Messenger
@NotNull public Set<String> getIncomingChannels(@NotNull Plugin plugin)
Messenger
getIncomingChannels
in interface Messenger
plugin
- Plugin to retrieve channels for.@NotNull public Set<PluginMessageListenerRegistration> getIncomingChannelRegistrations(@NotNull Plugin plugin)
Messenger
getIncomingChannelRegistrations
in interface Messenger
plugin
- Plugin to retrieve registrations for.@NotNull public Set<PluginMessageListenerRegistration> getIncomingChannelRegistrations(@NotNull String channel)
Messenger
getIncomingChannelRegistrations
in interface Messenger
channel
- Channel to retrieve registrations for.@NotNull public Set<PluginMessageListenerRegistration> getIncomingChannelRegistrations(@NotNull Plugin plugin, @NotNull String channel)
Messenger
getIncomingChannelRegistrations
in interface Messenger
plugin
- Plugin to retrieve registrations for.channel
- Channel to filter registrations by.public boolean isRegistrationValid(@NotNull PluginMessageListenerRegistration registration)
Messenger
A registration is considered valid if it has not be unregistered and that the plugin is still enabled.
isRegistrationValid
in interface Messenger
registration
- Registration to check.public boolean isIncomingChannelRegistered(@NotNull Plugin plugin, @NotNull String channel)
Messenger
isIncomingChannelRegistered
in interface Messenger
plugin
- Plugin to check registration for.channel
- Channel to test for.public boolean isOutgoingChannelRegistered(@NotNull Plugin plugin, @NotNull String channel)
Messenger
isOutgoingChannelRegistered
in interface Messenger
plugin
- Plugin to check registration for.channel
- Channel to test for.public void dispatchIncomingMessage(@NotNull Player source, @NotNull String channel, @NotNull byte[] message)
Messenger
dispatchIncomingMessage
in interface Messenger
source
- Source of the message.channel
- Channel that the message was sent by.message
- Raw payload of the message.@Deprecated public static void validateChannel(@NotNull String channel)
channel
- Channel name to validate.@Deprecated @NotNull public static String validateAndCorrectChannel(@NotNull String channel)
channel
- Channel name to validate.public static void validatePluginMessage(@NotNull Messenger messenger, @NotNull Plugin source, @NotNull String channel, @NotNull byte[] message)
messenger
- Messenger to use for validation.source
- Source plugin of the Message.channel
- Plugin Channel to send the message by.message
- Raw message payload to send.IllegalArgumentException
- Thrown if the source plugin is
disabled.IllegalArgumentException
- Thrown if source, channel or message
is null.MessageTooLargeException
- Thrown if the message is too big.ChannelNameTooLongException
- Thrown if the channel name is too
long.ChannelNotRegisteredException
- Thrown if the channel is not
registered for this plugin.Copyright © 2019. All rights reserved.