Package io.rong.imlib
Interface IRongCoreListener.UserGroupStatusListener
-
- All Implemented Interfaces:
public interface IRongCoreListener.UserGroupStatusListener
-
-
Method Summary
Modifier and Type Method Description abstract void
userGroupDisbandFrom(ConversationIdentifier identifier, Array<String> userGroupIds)
Notification received by the current user about the dissolution of a user group in an ultra group abstract void
userAddedTo(ConversationIdentifier identifier, Array<String> userGroupIds)
The current user is added to a user group under an ultra group abstract void
userRemovedFrom(ConversationIdentifier identifier, Array<String> userGroupIds)
The current user has been removed from the user group under the ultra group. abstract void
userGroupBindTo(ConversationIdentifier identifier, IRongCoreEnum.UltraGroupChannelType channelType, Array<String> userGroupIds)
Callback for binding user groups to a channel abstract void
userGroupUnbindFrom(ConversationIdentifier identifier, IRongCoreEnum.UltraGroupChannelType channelType, Array<String> userGroupIds)
Channel Unbind User Group Callback -
-
Method Detail
-
userGroupDisbandFrom
abstract void userGroupDisbandFrom(ConversationIdentifier identifier, Array<String> userGroupIds)
Notification received by the current user about the dissolution of a user group in an ultra group
- Parameters:
identifier
- Conversation identifieruserGroupIds
- List of user group IDs
-
userAddedTo
abstract void userAddedTo(ConversationIdentifier identifier, Array<String> userGroupIds)
The current user is added to a user group under an ultra group
- Parameters:
identifier
- Conversation identifieruserGroupIds
- List of user group IDs
-
userRemovedFrom
abstract void userRemovedFrom(ConversationIdentifier identifier, Array<String> userGroupIds)
The current user has been removed from the user group under the ultra group.
- Parameters:
identifier
- Conversation identifieruserGroupIds
- List of user group IDs
-
userGroupBindTo
abstract void userGroupBindTo(ConversationIdentifier identifier, IRongCoreEnum.UltraGroupChannelType channelType, Array<String> userGroupIds)
Callback for binding user groups to a channel
- Parameters:
identifier
- Channel identifierchannelType
- Channel typeuserGroupIds
- List of user group IDs
-
userGroupUnbindFrom
abstract void userGroupUnbindFrom(ConversationIdentifier identifier, IRongCoreEnum.UltraGroupChannelType channelType, Array<String> userGroupIds)
Channel Unbind User Group Callback
- Parameters:
identifier
- Channel identifierchannelType
- Channel typeuserGroupIds
- List of user group IDs
-
-
-
-