discord4j.voice.VoiceGatewayEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of discord4j-voice Show documentation
Show all versions of discord4j-voice Show documentation
A JVM-based REST/WS wrapper for the official Discord Bot API
package discord4j.voice;
public interface VoiceGatewayEvent {
class Stop implements VoiceGatewayEvent {}
class Start implements VoiceGatewayEvent {
final String gatewayUrl;
final Runnable connectedCallback;
Start(String gatewayUrl, Runnable connectedCallback) {
this.gatewayUrl = gatewayUrl;
this.connectedCallback = connectedCallback;
}
}
}