Package net.kyori.adventure.audience
Interface ForwardingAudience
- All Superinterfaces:
Audience
- All Known Subinterfaces:
ForwardingAudience.Single
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface ForwardingAudience extends Audience
A receiver that wraps one or more receivers.
ForwardingAudience
is designed to easily allow users or
implementations wrap an existing (collection of) Audience
(s).
- Since:
- 4.0.0
- See Also:
Audience
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
ForwardingAudience.Single
An audience that forwards everything to a single other audience. -
Method Summary
Modifier and Type Method Description @NonNull Iterable<? extends Audience>
audiences()
Gets the audiences.default void
clearTitle()
Clears the title, if one is being displayed.default void
hideBossBar(@NonNull BossBar bar)
Hides a boss bar.default void
openBook(@NonNull Book book)
Opens a book.default void
playSound(@NonNull Sound sound)
Plays a sound.default void
playSound(@NonNull Sound sound, double x, double y, double z)
Plays a sound at a location.default void
resetTitle()
Resets the title and timings back to their default.default void
sendActionBar(@NonNull Component message)
Sends a message on the action bar.default void
sendMessage(@NonNull Identified source, @NonNull Component message, @NonNull MessageType type)
Sends a chat message.default void
sendMessage(@NonNull Identity source, @NonNull Component message, @NonNull MessageType type)
Sends a chat message.default void
sendPlayerListFooter(@NonNull Component footer)
Sends the player list footer.default void
sendPlayerListHeader(@NonNull Component header)
Sends the player list header.default void
sendPlayerListHeaderAndFooter(@NonNull Component header, @NonNull Component footer)
Sends the player list header and footer.default void
showBossBar(@NonNull BossBar bar)
Shows a boss bar.default void
showTitle(@NonNull Title title)
Shows a title.default void
stopSound(@NonNull SoundStop stop)
Stops a sound, or many sounds.Methods inherited from interface net.kyori.adventure.audience.Audience
openBook, sendActionBar, sendMessage, sendMessage, sendMessage, sendMessage, sendMessage, sendMessage, sendMessage, sendMessage, sendMessage, sendMessage, sendPlayerListFooter, sendPlayerListHeader, sendPlayerListHeaderAndFooter
-
Method Details
-
audiences
Gets the audiences.- Returns:
- the audiences
- Since:
- 4.0.0
-
sendMessage
default void sendMessage(@NonNull Identified source, @NonNull Component message, @NonNull MessageType type)Description copied from interface:Audience
Sends a chat message.- Specified by:
sendMessage
in interfaceAudience
- Parameters:
source
- the source of the messagemessage
- a messagetype
- the type- See Also:
Component
-
sendMessage
default void sendMessage(@NonNull Identity source, @NonNull Component message, @NonNull MessageType type)Description copied from interface:Audience
Sends a chat message.- Specified by:
sendMessage
in interfaceAudience
- Parameters:
source
- the identity of the source of the messagemessage
- a messagetype
- the type- See Also:
Component
-
sendActionBar
Description copied from interface:Audience
Sends a message on the action bar.- Specified by:
sendActionBar
in interfaceAudience
- Parameters:
message
- a message- See Also:
Component
-
sendPlayerListHeader
Description copied from interface:Audience
Sends the player list header.Depending on the implementation of this
Audience
, an existing footer may be displayed. If you wish to set both the header and the footer, please useAudience.sendPlayerListHeaderAndFooter(Component, Component)
.- Specified by:
sendPlayerListHeader
in interfaceAudience
- Parameters:
header
- the header
-
showTitle
Description copied from interface:Audience
Shows a title. -
clearTitle
default void clearTitle()Description copied from interface:Audience
Clears the title, if one is being displayed.- Specified by:
clearTitle
in interfaceAudience
- See Also:
Title
-
resetTitle
default void resetTitle()Description copied from interface:Audience
Resets the title and timings back to their default.- Specified by:
resetTitle
in interfaceAudience
- See Also:
Title
-
showBossBar
Description copied from interface:Audience
Shows a boss bar.- Specified by:
showBossBar
in interfaceAudience
- Parameters:
bar
- a boss bar- See Also:
BossBar
-
hideBossBar
Description copied from interface:Audience
Hides a boss bar.- Specified by:
hideBossBar
in interfaceAudience
- Parameters:
bar
- a boss bar- See Also:
BossBar
-
playSound
Description copied from interface:Audience
Plays a sound. -
playSound
Description copied from interface:Audience
Plays a sound at a location. -
stopSound
Description copied from interface:Audience
Stops a sound, or many sounds. -
openBook
Description copied from interface:Audience
Opens a book.When possible, no item should persist after closing the book.
-