Package ai.nexconn.chat.handler
Interface CreateGroupHandler
-
- All Implemented Interfaces:
public interface CreateGroupHandlerCallback for group creation.
The underlying SDK provides additional errorKeys on failure that OperationHandler cannot carry, so this dedicated handler is used.
On success:
onResult(processCode, null, null)On failure:
onResult(null, errorKeys, error)
-
-
Method Summary
-
-
Method Detail
-
onResult
abstract Unit onResult(Integer processCode, List<String> errorKeys, NCError error)
Called when the create-group operation completes.
- Parameters:
processCode- Process status code on success (e.g.errorKeys- List of keys/user IDs that caused the failure;nullon successerror-nullon success; non-null on failure
-
-
-
-