unregisterIncomingPluginChannel

public abstract 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.

Parameters

plugin

Plugin that wishes to unregister from this channel.

channel

Channel to unregister.

listener

Listener to stop receiving messages on.

Throws

Thrown if plugin, channel or listener is null.


public abstract 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.

Parameters

plugin

Plugin that wishes to unregister from this channel.

channel

Channel to unregister.

Throws

Thrown if plugin or channel is null.


public abstract void unregisterIncomingPluginChannel(Plugin plugin)

Unregisters the specific plugin from listening on all plugin channels through all listeners.

Parameters

plugin

Plugin that wishes to unregister from this channel.

Throws

Thrown if plugin is null.