Class UserUpdateOnlineStatusEvent
java.lang.Object
net.dv8tion.jda.api.events.Event
net.dv8tion.jda.api.events.user.GenericUserEvent
net.dv8tion.jda.api.events.user.update.GenericUserUpdateEvent<OnlineStatus>
net.dv8tion.jda.api.events.user.update.UserUpdateOnlineStatusEvent
- All Implemented Interfaces:
GenericEvent
,UpdateEvent<User,
,OnlineStatus> GenericUserPresenceEvent
public class UserUpdateOnlineStatusEvent
extends GenericUserUpdateEvent<OnlineStatus>
implements GenericUserPresenceEvent
Indicates that the
As with any presence updates this happened for a
OnlineStatus
of a User
changed.
As with any presence updates this happened for a
Member
in a Guild!
Can be used to retrieve the User who changed their status and their previous status.
Identifier: status
Requirements
This event requires the GUILD_PRESENCES
intent and CacheFlag.ONLINE_STATUS
to be enabled.
createDefault(String)
and
createLight(String)
disable this by default!
Additionally, this event requires the MemberCachePolicy
to 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.
-
Field Summary
-
Constructor Summary
ConstructorDescriptionUserUpdateOnlineStatusEvent
(JDA api, long responseNumber, Member member, OnlineStatus oldOnlineStatus) -
Method Summary
Modifier and TypeMethodDescriptiongetGuild()
Guild in which the presence has changed.Member who changed their presence.The new statusThe new valueThe old statusThe old valueMethods inherited from class net.dv8tion.jda.api.events.user.update.GenericUserUpdateEvent
getEntity, getPropertyIdentifier
Methods inherited from class net.dv8tion.jda.api.events.user.GenericUserEvent
getUser
Methods inherited from class net.dv8tion.jda.api.events.Event
getJDA, getRawData, getResponseNumber, toString
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.dv8tion.jda.api.events.GenericEvent
getJDA, getRawData, getResponseNumber
Methods inherited from interface net.dv8tion.jda.api.events.UpdateEvent
getEntityType
-
Field Details
-
IDENTIFIER
- See Also:
-
-
Constructor Details
-
UserUpdateOnlineStatusEvent
-
-
Method Details
-
getGuild
Description copied from interface:GenericUserPresenceEvent
Guild in which the presence has changed.- Specified by:
getGuild
in interfaceGenericUserPresenceEvent
- Returns:
- The guild
-
getMember
Description copied from interface:GenericUserPresenceEvent
Member who changed their presence.- Specified by:
getMember
in interfaceGenericUserPresenceEvent
- Returns:
- The member
-
getOldOnlineStatus
The old status- Returns:
- The old status
-
getNewOnlineStatus
The new status- Returns:
- The new status
-
getOldValue
Description copied from interface:UpdateEvent
The old value- Specified by:
getOldValue
in interfaceUpdateEvent<User,
OnlineStatus> - Overrides:
getOldValue
in classGenericUserUpdateEvent<OnlineStatus>
- Returns:
- The old value
-
getNewValue
Description copied from interface:UpdateEvent
The new value- Specified by:
getNewValue
in interfaceUpdateEvent<User,
OnlineStatus> - Overrides:
getNewValue
in classGenericUserUpdateEvent<OnlineStatus>
- Returns:
- The new value
-