CompletableFuture<MessageSet> |
TextChannel.getMessages(int limit) |
Gets up to a given amount of messages in this channel from the newer end.
|
CompletableFuture<MessageSet> |
TextChannel.getMessagesAfter(int limit,
long after) |
Gets up to a given amount of messages in this channel after a given message in any channel.
|
default CompletableFuture<MessageSet> |
TextChannel.getMessagesAfter(int limit,
Message after) |
Gets up to a given amount of messages in this channel after a given message in any channel.
|
CompletableFuture<MessageSet> |
TextChannel.getMessagesAfterUntil(Predicate<Message> condition,
long after) |
Gets messages in this channel after a given message in any channel until one that meets the given condition is
found.
|
default CompletableFuture<MessageSet> |
TextChannel.getMessagesAfterUntil(Predicate<Message> condition,
Message after) |
Gets messages in this channel after a given message in any channel until one that meets the given condition is
found.
|
CompletableFuture<MessageSet> |
TextChannel.getMessagesAfterWhile(Predicate<Message> condition,
long after) |
Gets messages in this channel after a given message in any channel while they meet the given condition.
|
default CompletableFuture<MessageSet> |
TextChannel.getMessagesAfterWhile(Predicate<Message> condition,
Message after) |
Gets messages in this channel after a given message in any channel while they meet the given condition.
|
CompletableFuture<MessageSet> |
TextChannel.getMessagesAround(int limit,
long around) |
Gets up to a given amount of messages in this channel around a given message in any channel.
|
default CompletableFuture<MessageSet> |
TextChannel.getMessagesAround(int limit,
Message around) |
Gets up to a given amount of messages in this channel around a given message in any channel.
|
CompletableFuture<MessageSet> |
TextChannel.getMessagesAroundUntil(Predicate<Message> condition,
long around) |
Gets messages in this channel around a given message in any channel until one that meets the given condition is
found.
|
default CompletableFuture<MessageSet> |
TextChannel.getMessagesAroundUntil(Predicate<Message> condition,
Message around) |
Gets messages in this channel around a given message in any channel until one that meets the given condition is
found.
|
CompletableFuture<MessageSet> |
TextChannel.getMessagesAroundWhile(Predicate<Message> condition,
long around) |
Gets messages in this channel around a given message in any channel while they meet the given condition.
|
default CompletableFuture<MessageSet> |
TextChannel.getMessagesAroundWhile(Predicate<Message> condition,
Message around) |
Gets messages in this channel around a given message in any channel while they meet the given condition.
|
CompletableFuture<MessageSet> |
TextChannel.getMessagesBefore(int limit,
long before) |
Gets up to a given amount of messages in this channel before a given message in any channel.
|
default CompletableFuture<MessageSet> |
TextChannel.getMessagesBefore(int limit,
Message before) |
Gets up to a given amount of messages in this channel before a given message in any channel.
|
CompletableFuture<MessageSet> |
TextChannel.getMessagesBeforeUntil(Predicate<Message> condition,
long before) |
Gets messages in this channel before a given message in any channel until one that meets the given condition is
found.
|
default CompletableFuture<MessageSet> |
TextChannel.getMessagesBeforeUntil(Predicate<Message> condition,
Message before) |
Gets messages in this channel before a given message in any channel until one that meets the given condition is
found.
|
CompletableFuture<MessageSet> |
TextChannel.getMessagesBeforeWhile(Predicate<Message> condition,
long before) |
Gets messages in this channel before a given message in any channel while they meet the given condition.
|
default CompletableFuture<MessageSet> |
TextChannel.getMessagesBeforeWhile(Predicate<Message> condition,
Message before) |
Gets messages in this channel before a given message in any channel while they meet the given condition.
|
CompletableFuture<MessageSet> |
TextChannel.getMessagesBetween(long from,
long to) |
Gets all messages in this channel between the first given message in any channel and the second given message in
any channel, excluding the boundaries.
|
default CompletableFuture<MessageSet> |
TextChannel.getMessagesBetween(Message from,
Message to) |
Gets all messages in this channel between the first given message in any channel and the second given message in
any channel, excluding the boundaries.
|
CompletableFuture<MessageSet> |
TextChannel.getMessagesBetweenUntil(Predicate<Message> condition,
long from,
long to) |
Gets all messages in this channel between the first given message in any channel and the second given message in
any channel, excluding the boundaries, until one that meets the given condition is found.
|
default CompletableFuture<MessageSet> |
TextChannel.getMessagesBetweenUntil(Predicate<Message> condition,
Message from,
Message to) |
Gets all messages in this channel between the first given message in any channel and the second given message in
any channel, excluding the boundaries, until one that meets the given condition is found.
|
CompletableFuture<MessageSet> |
TextChannel.getMessagesBetweenWhile(Predicate<Message> condition,
long from,
long to) |
Gets all messages in this channel between the first given message in any channel and the second given message in
any channel, excluding the boundaries, while they meet the given condition.
|
default CompletableFuture<MessageSet> |
TextChannel.getMessagesBetweenWhile(Predicate<Message> condition,
Message from,
Message to) |
Gets all messages in this channel between the first given message in any channel and the second given message in
any channel, excluding the boundaries, while they meet the given condition.
|
CompletableFuture<MessageSet> |
TextChannel.getMessagesUntil(Predicate<Message> condition) |
Gets messages in this channel from the newer end until one that meets the given condition is found.
|
CompletableFuture<MessageSet> |
TextChannel.getMessagesWhile(Predicate<Message> condition) |
Gets messages in this channel from the newer end while they meet the given condition.
|
CompletableFuture<MessageSet> |
TextChannel.getPins() |
Gets a list with all pinned messages.
|