Package org.bukkit.event.server
Class BroadcastMessageEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.server.ServerEvent
org.bukkit.event.server.BroadcastMessageEvent
- All Implemented Interfaces:
Cancellable
Event triggered for server broadcast messages such as from
Server.broadcast(String, String)
.
This event behaves similarly to AsyncPlayerChatEvent
in that it
should be async if fired from an async thread. Please see that event for
further information.-
Nested Class Summary
Nested classes/interfaces inherited from class org.bukkit.event.Event
Event.Result
-
Constructor Summary
ConstructorDescriptionBroadcastMessageEvent
(boolean isAsync, String message, Set<CommandSender> recipients) BroadcastMessageEvent
(String message, Set<CommandSender> recipients) Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionstatic HandlerList
Get the message to broadcast.Gets a set of recipients that this chat message will be displayed to.boolean
Gets the cancellation state of this event.void
setCancelled
(boolean cancelled) Sets the cancellation state of this event.void
setMessage
(String message) Set the message to broadcast.Methods inherited from class org.bukkit.event.Event
getEventName, isAsynchronous
-
Constructor Details
-
BroadcastMessageEvent
@Deprecated public BroadcastMessageEvent(@NotNull String message, @NotNull Set<CommandSender> recipients) Deprecated. -
BroadcastMessageEvent
public BroadcastMessageEvent(boolean isAsync, @NotNull String message, @NotNull Set<CommandSender> recipients)
-
-
Method Details
-
getMessage
Get the message to broadcast.- Returns:
- Message to broadcast
-
setMessage
Set the message to broadcast.- Parameters:
message
- New message to broadcast
-
getRecipients
Gets a set of recipients that this chat message will be displayed to.The set returned is not guaranteed to be mutable and may auto-populate on access. Any listener accessing the returned set should be aware that it may reduce performance for a lazy set implementation.
Listeners should be aware that modifying the list may throw
UnsupportedOperationException
if the event caller provides an unmodifiable set.- Returns:
- All CommandSenders who will see this chat message
-
isCancelled
public boolean isCancelled()Description copied from interface:Cancellable
Gets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins- Specified by:
isCancelled
in interfaceCancellable
- Returns:
- true if this event is cancelled
-
setCancelled
public void setCancelled(boolean cancelled) Description copied from interface:Cancellable
Sets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins.- Specified by:
setCancelled
in interfaceCancellable
- Parameters:
cancelled
- true if you wish to cancel this event
-
getHandlers
- Specified by:
getHandlers
in classEvent
-
getHandlerList
-