Interface GroupChannelUpdaterDelegate
-
public interface GroupChannelUpdaterDelegateThis class is internally used by theGroupChannelUpdaterto update group channels. You usually don't want to interact with this object.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetName(String name)Queues the name to be updated.CompletableFuture<Void>update()Performs the queued updates.
-
-
-
Method Detail
-
setName
void setName(String name)
Queues the name to be updated.- Parameters:
name- The new name of the channel.
-
update
CompletableFuture<Void> update()
Performs the queued updates.- Returns:
- A future to check if the update was successful.
-
-