Interface ProxyProvider

All Known Implementing Classes:
BukkitProxyProvider, PaperProxyProvider, SpongeProxyProvider

public interface ProxyProvider
ProxyProvider represents a Proxy method instances such as Bungee/Velocity in an implementation.
Since:
0.1.2.0
Author:
creatorfromhell
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Used to register a plugin message channel.
    void
    send(String channel, byte[] bytes)
    Used to send a message through a specific plugin message channel.
  • Method Details

    • registerChannel

      void registerChannel(String channel)
      Used to register a plugin message channel.
      Parameters:
      channel - The channel to register.
    • send

      void send(String channel, byte[] bytes)
      Used to send a message through a specific plugin message channel.
      Parameters:
      channel - The channel to send the message through.
      bytes - The byte data to send.