Class UserUpdateActivitiesEvent
- All Implemented Interfaces:
GenericEvent,UpdateEvent<User,,List<Activity>> GenericUserPresenceEvent
This is fired after a sequence of UserActivityStartEvents and UserActivityEndEvents
are fired and can be used to handle the resulting list of activities for the member.
Identifier: activities
Requirements
This event requires the GUILD_PRESENCES intent 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.
This also requires CacheFlag.ACTIVITY to be enabled.
You can enable the cache flag with enableCache(CacheFlag.ACTIVITY).
- Since:
- 4.2.1
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionUserUpdateActivitiesEvent(JDA api, long responseNumber, Member member, List<Activity> previous) -
Method Summary
Methods inherited from class net.dv8tion.jda.api.events.user.update.GenericUserUpdateEvent
getEntity, getNewValue, getOldValue, getPropertyIdentifierMethods inherited from class net.dv8tion.jda.api.events.user.GenericUserEvent
getUserMethods inherited from class net.dv8tion.jda.api.events.Event
getJDA, getRawData, getResponseNumber, toStringMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface net.dv8tion.jda.api.events.GenericEvent
getJDA, getRawData, getResponseNumberMethods inherited from interface net.dv8tion.jda.api.events.UpdateEvent
getEntityType
-
Field Details
-
IDENTIFIER
- See Also:
-
-
Constructor Details
-
UserUpdateActivitiesEvent
-
-
Method Details
-
getGuild
Description copied from interface:GenericUserPresenceEventGuild in which the presence has changed.- Specified by:
getGuildin interfaceGenericUserPresenceEvent- Returns:
- The guild
-
getMember
Description copied from interface:GenericUserPresenceEventMember who changed their presence.- Specified by:
getMemberin interfaceGenericUserPresenceEvent- Returns:
- The member
-