Interface ServerForumChannelBuilderDelegate
-
- All Superinterfaces:
RegularServerChannelBuilderDelegate,ServerChannelBuilderDelegate
public interface ServerForumChannelBuilderDelegate extends RegularServerChannelBuilderDelegate
This class is internally used by theServerForumChannelBuilderto create server forum channels. You usually don't want to interact with this object.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.concurrent.CompletableFuture<ServerForumChannel>create()Creates the server forum channel.voidsetCategory(ChannelCategory category)Sets the category of the channel.-
Methods inherited from interface org.javacord.api.entity.channel.internal.RegularServerChannelBuilderDelegate
addPermissionOverwrite, removePermissionOverwrite, setRawPosition
-
Methods inherited from interface org.javacord.api.entity.channel.internal.ServerChannelBuilderDelegate
setAuditLogReason, setName
-
-
-
-
Method Detail
-
setCategory
void setCategory(ChannelCategory category)
Sets the category of the channel.- Parameters:
category- The category of the channel.
-
create
java.util.concurrent.CompletableFuture<ServerForumChannel> create()
Creates the server forum channel.- Returns:
- The created forum channel.
-
-