Interface ServerForumChannelUpdaterDelegate
-
- All Superinterfaces:
RegularServerChannelUpdaterDelegate,ServerChannelUpdaterDelegate
public interface ServerForumChannelUpdaterDelegate extends RegularServerChannelUpdaterDelegate
This class is internally used by theServerForumChannelUpdaterto update 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 voidremoveCategory()Queues the category to be removed.voidsetCategory(ChannelCategory category)Queues the category to be updated.-
Methods inherited from interface org.javacord.api.entity.channel.internal.RegularServerChannelUpdaterDelegate
addPermissionOverwrite, removePermissionOverwrite, setRawPosition
-
Methods inherited from interface org.javacord.api.entity.channel.internal.ServerChannelUpdaterDelegate
setAuditLogReason, setName, update
-
-
-
-
Method Detail
-
setCategory
void setCategory(ChannelCategory category)
Queues the category to be updated.- Parameters:
category- The new category of the channel.
-
removeCategory
void removeCategory()
Queues the category to be removed.
-
-