Reputation: 1658
I'm making a mobile app for an audio chat like the clubhouse. Does anyone knows how to get existing rooms? In other words, how could you tell when a room is created and destroyed? I wonder if a channel is something like a river that constantly flows even without people in it.
Upvotes: 1
Views: 2160
Reputation: 873
that's an interesting question. Creating and destroying can be done in multiple ways which mainly depends upon your use case:
joinChannel()
method.Further the process is simple the user calls the leaveChannel()
method to drop off a particular call. And then the destroy()
method releases all the Agora RtcEngine resources.
Upvotes: 3