Class UserUpdateActivitiesEvent
- java.lang.Object
-
- net.dv8tion.jda.api.events.Event
-
- net.dv8tion.jda.api.events.user.GenericUserEvent
-
- net.dv8tion.jda.api.events.user.update.GenericUserUpdateEvent<java.util.List<Activity>>
-
- net.dv8tion.jda.api.events.user.update.UserUpdateActivitiesEvent
-
- All Implemented Interfaces:
GenericEvent,UpdateEvent<User,java.util.List<Activity>>,GenericUserPresenceEvent
public class UserUpdateActivitiesEvent extends GenericUserUpdateEvent<java.util.List<Activity>> implements GenericUserPresenceEvent
Indicates that the activities of a guild member changed.This is fired after a sequence of
UserActivityStartEventsandUserActivityEndEventsare fired and can be used to handle the resulting list of activities for the member.Identifier:
activitiesRequirements
This event requires the
GUILD_PRESENCESintent to be enabled.createDefault(String)andcreateLight(String)disable this 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.This also requires
CacheFlag.ACTIVITYto be enabled. You can enable the cache flag withenableCache(CacheFlag.ACTIVITY).- Since:
- 4.2.1
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringIDENTIFIER
-
Constructor Summary
Constructors Constructor Description UserUpdateActivitiesEvent(JDA api, long responseNumber, Member member, java.util.List<Activity> previous)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GuildgetGuild()Guild in which the presence has changed.MembergetMember()Member who changed their presence.-
Methods inherited from class net.dv8tion.jda.api.events.user.update.GenericUserUpdateEvent
getEntity, getNewValue, getOldValue, getPropertyIdentifier, toString
-
Methods inherited from class net.dv8tion.jda.api.events.user.GenericUserEvent
getUser
-
Methods inherited from class net.dv8tion.jda.api.events.Event
getJDA, getResponseNumber
-
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, getResponseNumber
-
Methods inherited from interface net.dv8tion.jda.api.events.UpdateEvent
getEntityType
-
-
-
-
Field Detail
-
IDENTIFIER
public static final java.lang.String IDENTIFIER
- See Also:
- Constant Field Values
-
-
Method Detail
-
getGuild
@Nonnull public Guild getGuild()
Description copied from interface:GenericUserPresenceEventGuild in which the presence has changed.- Specified by:
getGuildin interfaceGenericUserPresenceEvent- Returns:
- The guild
-
getMember
@Nonnull public Member getMember()
Description copied from interface:GenericUserPresenceEventMember who changed their presence.- Specified by:
getMemberin interfaceGenericUserPresenceEvent- Returns:
- The member
-
-