Package org.javacord.api.entity.server
Interface ArchivedThreads
-
public interface ArchivedThreads
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<ServerThreadChannel>getServerThreadChannels()Gets the active threads.java.util.Set<ThreadMember>getThreadMembers()Gets the thread member objects for each returned thread the current user has joined.booleanhasMoreThreads()Whether there are more threads.
-
-
-
Method Detail
-
getServerThreadChannels
java.util.List<ServerThreadChannel> getServerThreadChannels()
Gets the active threads.- Returns:
- The active Server Thread Channels.
-
getThreadMembers
java.util.Set<ThreadMember> getThreadMembers()
Gets the thread member objects for each returned thread the current user has joined.- Returns:
- The thread members.
-
hasMoreThreads
boolean hasMoreThreads()
Whether there are more threads.- Returns:
- whether there are potentially additional threads that could be returned on a subsequent call
-
-