static CompletableFuture<Void> |
Message.addReaction(DiscordApi api,
long channelId,
long messageId,
Emoji emoji) |
Adds a reaction to the message.
|
static CompletableFuture<Void> |
Message.addReaction(DiscordApi api,
String channelId,
String messageId,
Emoji emoji) |
Adds a reaction to the message.
|
default CompletableFuture<Void> |
Message.addReaction(Emoji emoji) |
Adds a reaction to the message.
|
CompletableFuture<Void> |
UncachedMessageUtil.addReaction(long channelId,
long messageId,
Emoji emoji) |
Adds a reaction to the message.
|
CompletableFuture<Void> |
UncachedMessageUtil.addReaction(String channelId,
String messageId,
Emoji emoji) |
Adds a reaction to the message.
|
default CompletableFuture<Void> |
Message.addReactions(Emoji... emojis) |
Adds reactions to the message.
|
default Optional<Reaction> |
Message.getReactionByEmoji(Emoji emoji) |
Gets a reaction by its emoji.
|
static CompletableFuture<List<User>> |
Reaction.getUsers(DiscordApi api,
long channelId,
long messageId,
Emoji emoji) |
Gets a list with all users who used this reaction.
|
static CompletableFuture<List<User>> |
Reaction.getUsers(DiscordApi api,
String channelId,
String messageId,
Emoji emoji) |
Gets a list with all users who used this reaction.
|
CompletableFuture<List<User>> |
UncachedMessageUtil.getUsersWhoReactedWithEmoji(long channelId,
long messageId,
Emoji emoji) |
Gets a list with all users who reacted with the given emoji.
|
CompletableFuture<List<User>> |
UncachedMessageUtil.getUsersWhoReactedWithEmoji(String channelId,
String messageId,
Emoji emoji) |
Gets a list with all users who reacted with the given emoji.
|
default CompletableFuture<Void> |
Message.removeOwnReactionByEmoji(Emoji emoji) |
Removes you from the list of reactors of a given emoji reaction.
|
default CompletableFuture<Void> |
Message.removeOwnReactionsByEmoji(Emoji... emojis) |
Removes you from the list of reactors of the given emoji reactions.
|
default CompletableFuture<Void> |
Message.removeReactionByEmoji(Emoji emoji) |
Removes all reactors of a given emoji reaction.
|
default CompletableFuture<Void> |
Message.removeReactionByEmoji(User user,
Emoji emoji) |
Removes a user from the list of reactors of a given emoji reaction.
|
default CompletableFuture<Void> |
Message.removeReactionsByEmoji(Emoji... emojis) |
Removes all reactors of the given emoji reactions.
|
default CompletableFuture<Void> |
Message.removeReactionsByEmoji(User user,
Emoji... emojis) |
Removes a user from the list of reactors of the given emoji reactions.
|
static CompletableFuture<Void> |
Reaction.removeUser(DiscordApi api,
long channelId,
long messageId,
Emoji emoji,
User user) |
Removes a user from the list of reactors.
|
static CompletableFuture<Void> |
Reaction.removeUser(DiscordApi api,
String channelId,
String messageId,
Emoji emoji,
User user) |
Removes a user from the list of reactors.
|
CompletableFuture<Void> |
UncachedMessageUtil.removeUserReactionByEmoji(long channelId,
long messageId,
Emoji emoji,
User user) |
Removes the reaction of the given user.
|
CompletableFuture<Void> |
UncachedMessageUtil.removeUserReactionByEmoji(String channelId,
String messageId,
Emoji emoji,
User user) |
Removes the reaction of the given user.
|