Package io.rong.imlib
Interface IRongCoreListener.UltraGroupChannelListener
-
- All Implemented Interfaces:
public interface IRongCoreListener.UltraGroupChannelListener
Ultra Group Channel Event Callback
-
-
Method Summary
Modifier and Type Method Description abstract void
ultraGroupChannelUserDidKicked(List<UltraGroupChannelUserKickedInfo> infoList)
When the channel is private, a notification is triggered when a user in the allowlist is kicked. abstract void
ultraGroupChannelTypeDidChanged(List<UltraGroupChannelChangeTypeInfo> infoList)
Callback triggered when the channel attributes change. abstract void
ultraGroupChannelDidDisbanded(List<UltraGroupChannelDisbandedInfo> infoList)
Channel Dissolution Notification When a public channel is deleted, all members of the channel will be notified. -
-
Method Detail
-
ultraGroupChannelUserDidKicked
abstract void ultraGroupChannelUserDidKicked(List<UltraGroupChannelUserKickedInfo> infoList)
When the channel is private, a notification is triggered when a user in the allowlist is kicked. Only users in the allowlist will receive this event. This callback is not triggered for public channels.
-
ultraGroupChannelTypeDidChanged
abstract void ultraGroupChannelTypeDidChanged(List<UltraGroupChannelChangeTypeInfo> infoList)
Callback triggered when the channel attributes change. When a private channel becomes public, members in the allowlist will receive this event. When a public channel becomes private, all members will receive this event.
-
ultraGroupChannelDidDisbanded
abstract void ultraGroupChannelDidDisbanded(List<UltraGroupChannelDisbandedInfo> infoList)
Channel Dissolution Notification When a public channel is deleted, all members of the channel will be notified. When a private channel is deleted, all members in the allowlist will be notified.
-
-
-
-