Property | Type | Description |
coHostStatus | Real-time cross-room connection status. | |
connected | List of hosts currently connected with current live room. | |
invitees | List of hosts to whom requests have been sent. | |
applicant | Host who initiated connection request to current live room. | |
candidatesCursor | StateFlow<String> | Recommended user list cursor. |
candidates | Recommended user list. |
Function | Description |
Create object instance. | |
Connection event callbacks. | |
Connection event callbacks. | |
Initiate connection request. | |
Cancel connection request. | |
Accept connection request. | |
Reject connection request. | |
Exit connection. | |
Get recommended host list. |
abstract fun addCoHostListener(listener: CoHostListener?)
Parameter | Type | Required | Description |
listener | Required | Listener. |
abstract fun removeCoHostListener(listener: CoHostListener?)
Parameter | Type | Required | Description |
listener | Required | Listener. |
abstract fun requestHostConnection(targetHostLiveID: String?,layoutTemplate: CoHostLayoutTemplate,timeout: Int,extraInfo: String?,completion: CompletionHandler?)
Parameter | Type | Required | Description |
targetHostLiveID | String? | Required | Target host's live room ID. |
layoutTemplate | Required | Connection layout template. | |
timeout | Int | Required | Request timeout (unit: seconds). |
extraInfo | String? | Required | Extension information. |
completion | Required | Callback for successful request initiation. |
abstract fun cancelHostConnection(toHostLiveID: String?,completion: CompletionHandler?)
Parameter | Type | Required | Description |
toHostLiveID | String? | Required | Target host's live room ID. |
completion | Required | Callback for successful cancellation. |
abstract fun acceptHostConnection(fromHostLiveID: String?,completion: CompletionHandler?)
Parameter | Type | Required | Description |
fromHostLiveID | String? | Required | Live room ID of the host initiating connection request. |
completion | Required | Callback for successful acceptance. |
abstract fun rejectHostConnection(fromHostLiveID: String?,completion: CompletionHandler?)
Parameter | Type | Required | Description |
fromHostLiveID | String? | Required | Live room ID of the host initiating connection request. |
completion | Required | Callback for successful rejection. |
abstract fun exitHostConnection(completion: CompletionHandler?)
Parameter | Type | Required | Description |
completion | Required | Callback for successful exit from connection. |
abstract fun getCoHostCandidates(cursor: String,completion: CompletionHandler?)
Parameter | Type | Required | Description |
cursor | String | Required | Cursor. |
completion | Required | Completion callback. |
Enum Value | Value | Description |
CONNECTED | 0 | Currently connected with other hosts. |
DISCONNECTED | 1 | Not connected with other hosts. |
Enum Value | Value | Description |
HOST_VOICE_CONNECTION | 2 | Voice chat room connection layout. |
HOST_DYNAMIC_GRID | 600 | Host dynamic grid layout. |
HOST_DYNAMIC_1V6 | 601 | Host dynamic 1v6 layout. |
Method | Description |
onCoHostRequestReceived | This callback is triggered when a connection request is received. |
onCoHostRequestCancelled | This callback is triggered when a connection request is cancelled. |
onCoHostRequestAccepted | This callback is triggered when a connection request is accepted. |
onCoHostRequestRejected | This callback is triggered when a connection request is rejected. |
onCoHostRequestTimeout | This callback is triggered when a connection request times out. |
onCoHostUserJoined | This callback is triggered when a user joins the connection. |
onCoHostUserLeft | This callback is triggered when a user leaves the connection. |
Property | Type | Description |
coHostStatus | Real-time cross-room connection status. | |
connected | List of hosts currently connected with current live room. | |
invitees | List of hosts to whom requests have been sent. | |
applicant | Host who initiated connection request to current live room. | |
candidatesCursor | StateFlow<String> | Recommended user list cursor. |
candidates | Recommended user list. |
// Create store instanceval store = CoHostStore.create("live_room_123")// Subscribe to state changeslifecycleScope.launch {store.coHostState.coHostStatus.collect { status ->println("Connection status: $status")}}lifecycleScope.launch {store.coHostState.connected.collect { connected ->println("Connected hosts: ${connected.size}")}}// Add connection event listenerstore.addCoHostListener(object : CoHostListener() {override fun onCoHostRequestReceived(inviter: SeatUserInfo, extensionInfo: String) {println("Received connection request from ${inviter.userName}")// Show accept/reject UI}override fun onCoHostRequestAccepted(invitee: SeatUserInfo) {println("Connection request accepted by ${invitee.userName}")}override fun onCoHostUserJoined(userInfo: SeatUserInfo) {println("Host ${userInfo.userName} joined connection")}})// Initiate connection requeststore.requestHostConnection(targetHostLiveID = "target_live_id",layoutTemplate = CoHostLayoutTemplate.HOST_DYNAMIC_GRID,timeout = 30,extraInfo = "",completion = { code, message ->if (code == 0) {println("Connection request sent successfully")}})
Feedback