Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@

import java.util.regex.Pattern;

/**
* Adapter implementation of a {@link VoiceReceiver}. A new receiver can then be registered by
* adding it to {@link Features}.
* <p>
* {@link #onVoiceUpdate(GuildVoiceUpdateEvent)} like the other provided methods can be overridden
* if desired. The default implementation is empty, the adapter will not react to such events.
*/
public class VoiceReceiverAdapter implements VoiceReceiver {

private final Pattern channelNamePattern;
Expand Down
Loading