Interface MessageSender

All Known Implementing Classes:
SpigotMessageSender

public interface MessageSender
Message sender helper for Prodrivers plugins.

Expose simple functions to send messages to players. Handle colors directly. A prefix must be given as parameter. Used as backend for Prodrivers Commons' chat facility.

Used implementation can be changed in configuration.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    send(@NonNull UUID receiverPlayerUniqueId, @NonNull String message, @NonNull String prefix)
    Generic message receiver, that potentially supports non-local players, using a defined prefix
    void
    send(@NonNull UUID receiverPlayerUniqueId, @NonNull net.md_5.bungee.api.chat.BaseComponent[] message, @NonNull String prefix)
    Generic message receiver, that potentially supports non-local players, using a defined prefix
    void
    send(@NonNull org.bukkit.command.CommandSender receiver, @NonNull String message, @NonNull String prefix)
    Generic message sender
    void
    send(@NonNull org.bukkit.command.CommandSender receiver, @NonNull net.md_5.bungee.api.chat.BaseComponent[] message, @NonNull String prefix)
    Generic message receiver, using a defined prefix
  • Method Details

    • send

      void send(@NonNull org.bukkit.command.CommandSender receiver, @NonNull String message, @NonNull String prefix)
      Generic message sender
      Parameters:
      receiver - Receiving entity
      message - Message to send
      prefix - Prefix to use
    • send

      void send(@NonNull org.bukkit.command.CommandSender receiver, @NonNull net.md_5.bungee.api.chat.BaseComponent[] message, @NonNull String prefix)
      Generic message receiver, using a defined prefix
      Parameters:
      receiver - Receiving entity
      message - Message to send
      prefix - Prefix to use
    • send

      void send(@NonNull UUID receiverPlayerUniqueId, @NonNull String message, @NonNull String prefix)
      Generic message receiver, that potentially supports non-local players, using a defined prefix
      Parameters:
      receiverPlayerUniqueId - Receiving player
      message - Message to send
      prefix - Prefix to use
    • send

      void send(@NonNull UUID receiverPlayerUniqueId, @NonNull net.md_5.bungee.api.chat.BaseComponent[] message, @NonNull String prefix)
      Generic message receiver, that potentially supports non-local players, using a defined prefix
      Parameters:
      receiverPlayerUniqueId - Receiving player
      message - Message to send
      prefix - Prefix to use