Class AsyncPlayerChatEvent
- All Implemented Interfaces:
- Cancellable
The constructor provides a boolean to indicate if the event was fired synchronously or asynchronously. When asynchronous, this event can be called from any thread, sans the main thread, and has limited access to the API.
If a player is the direct cause of this event by an incoming packet, this event will be asynchronous. If a plugin triggers this event by compelling a player to chat, this event will be synchronous.
 Care should be taken to check Event.isAsynchronous() and treat the event
 appropriately.
- 
Nested Class SummaryNested classes/interfaces inherited from class org.bukkit.event.EventEvent.Result
- 
Field SummaryFields inherited from class org.bukkit.event.player.PlayerEventplayer
- 
Constructor SummaryConstructorsConstructorDescriptionAsyncPlayerChatEvent(boolean async, Player who, String message, Set<Player> players) 
- 
Method SummaryModifier and TypeMethodDescriptionGets the format to use to display this chat message.static HandlerListGets the message that the player is attempting to send.Gets a set of recipients that this chat message will be displayed to.booleanGets the cancellation state of this event.voidsetCancelled(boolean cancel) Sets the cancellation state of this event.voidSets the format to use to display this chat message.voidsetMessage(String message) Sets the message that the player will send.Methods inherited from class org.bukkit.event.player.PlayerEventgetPlayerMethods inherited from class org.bukkit.event.EventgetEventName, isAsynchronous
- 
Constructor Details- 
AsyncPlayerChatEventpublic AsyncPlayerChatEvent(boolean async, @NotNull Player who, @NotNull String message, @NotNull Set<Player> players) - Parameters:
- async- This changes the event to a synchronous state.
- who- the chat sender
- message- the message sent
- players- the players to receive the message. This may be a lazy or unmodifiable collection.
 
 
- 
- 
Method Details- 
getMessageGets the message that the player is attempting to send. This message will be used withgetFormat().- Returns:
- Message the player is attempting to send
 
- 
setMessageSets the message that the player will send. This message will be used withgetFormat().- Parameters:
- message- New message that the player will send
 
- 
getFormatGets the format to use to display this chat message.When this event finishes execution, the first format parameter is the Player.getDisplayName()and the second parameter isgetMessage()- Returns:
- String.format(String, Object...)compatible format string
 
- 
setFormatSets the format to use to display this chat message.When this event finishes execution, the first format parameter is the Player.getDisplayName()and the second parameter isgetMessage()- Parameters:
- format-- String.format(String, Object...)compatible format string
- Throws:
- IllegalFormatException- if the underlying API throws the exception
- NullPointerException- if format is null
- See Also:
 
- 
getRecipientsGets 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 UnsupportedOperationExceptionif the event caller provides an unmodifiable set.- Returns:
- All Players who will see this chat message
 
- 
isCancelledpublic boolean isCancelled()Description copied from interface:CancellableGets 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:
- isCancelledin interface- Cancellable
- Returns:
- true if this event is cancelled
 
- 
setCancelledpublic void setCancelled(boolean cancel) Description copied from interface:CancellableSets 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:
- setCancelledin interface- Cancellable
- Parameters:
- cancel- true if you wish to cancel this event
 
- 
getHandlers- Specified by:
- getHandlersin class- Event
 
- 
getHandlerList
 
-