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 TypeMethodDescriptionvoid
Generic message receiver, that potentially supports non-local players, using a defined prefixvoid
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 prefixvoid
send
(@NonNull org.bukkit.command.CommandSender receiver, @NonNull String message, @NonNull String prefix) Generic message sendervoid
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 entitymessage
- Message to sendprefix
- 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 entitymessage
- Message to sendprefix
- Prefix to use
-
send
Generic message receiver, that potentially supports non-local players, using a defined prefix- Parameters:
receiverPlayerUniqueId
- Receiving playermessage
- Message to sendprefix
- 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 playermessage
- Message to sendprefix
- Prefix to use
-