Interface GuildVoiceUpdateEvent
-
- All Superinterfaces:
GenericEvent,UpdateEvent<Member,VoiceChannel>
- All Known Implementing Classes:
GenericGuildVoiceUpdateEvent,GuildVoiceJoinEvent,GuildVoiceLeaveEvent,GuildVoiceMoveEvent
public interface GuildVoiceUpdateEvent extends UpdateEvent<Member,VoiceChannel>
Indicates that aMemberjoined or left aVoiceChannel.
Generic event that combinesGuildVoiceLeaveEvent,GuildVoiceJoinEvent, andGuildVoiceMoveEventfor convenience.Can be used to detect when a Member leaves/joins a channel
Requirements
This event requires the
VOICE_STATECacheFlag to be enabled, which requires theGUILD_VOICE_STATESintent.createLight(String)disables that CacheFlag by default!Additionally, this event requires the
MemberCachePolicyto cache the updated members. Discord does not specifically tell us about the updates, but merely tells us the member was updated and gives us the updated member object. In order to fire a specific event like this we need to have the old member cached to compare against.Identifier:
voice-channel
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringIDENTIFIER
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VoiceChannelgetChannelJoined()TheVoiceChannelthat was joinedVoiceChannelgetChannelLeft()TheVoiceChannelthat theMemberis moved fromGuildgetGuild()TheGuildMembergetMember()The affectedMember-
Methods inherited from interface net.dv8tion.jda.api.events.GenericEvent
getJDA, getResponseNumber
-
Methods inherited from interface net.dv8tion.jda.api.events.UpdateEvent
getEntity, getEntityType, getNewValue, getOldValue, getPropertyIdentifier
-
-
-
-
Field Detail
-
IDENTIFIER
static final java.lang.String IDENTIFIER
- See Also:
- Constant Field Values
-
-
Method Detail
-
getChannelLeft
@Nullable VoiceChannel getChannelLeft()
TheVoiceChannelthat theMemberis moved from- Returns:
- The
VoiceChannel
-
getChannelJoined
@Nullable VoiceChannel getChannelJoined()
TheVoiceChannelthat was joined- Returns:
- The
VoiceChannel
-
-