ruslan.musagitov
ruslan.musagitov

Reputation: 2124

How to add user to QBRTCSession if it is already established

I have audio chat session (QBRTCSession) object with 3 QBUUsers in it. I need possibility to add another QBUUser in that call session. Can I do this without creating new session and calling to all users again?

Currently I create session in QBRTCClient this way

NSArray *opponentsIDs = @[@2145, @2144, @2143];
QBRTCSession* session = 
[QBRTCClient.instance createNewSessionWithOpponents:opponentsIDs
withConferenceType:conferenceType];

Upvotes: 0

Views: 100

Answers (1)

SevenDays
SevenDays

Reputation: 3768

As for now you should recreate session.

This feature is planned for future releases.

Upvotes: 1

Related Questions