You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an issue which i will describe with scenario:
Description
Host - creator of the room, iOS side.
Participant - somebody who joins to the room, Web side.
Host creates the room and the call starts. The internet connection is lost on the Host side for 5-10 seconds. At the same moment, while internet connection is still missing on the Host side, Participant starts joining to the meeting, it can take a few seconds to connect Participant to the room. Then the internet connection is restored on the Host side, so that the method 'roomDidReconnect' is called but 'roomDidDisconnect' is not on the Host side. After 'roomDidReconnect' is called, Participant joins to the room and method 'participantDidConnect' is called on the Host side.
Expected Behavior
After method 'participantDidConnect' i expect that the method 'didSubscribeToDataTrack(dataTrack: RemoteDataTrack, publication: RemoteDataTrackPublication, participant: RemoteParticipant)' should be triggered, to do 'dataTrack.delegate = self' for work with DataTracks after that. In the end, i expect 'remoteDataTrackDidReceiveString' be triggered when 'RemoteDataTrack' is sent from Web.
Actual Behavior
'didSubscribeToDataTrack' isn't triggered so i can't assign 'dataTracks.delegate = self' and work with dataTraks when they are sent from the Web.
Steps to Reproduce
Host creates the room and starts the call.
Participant starts joining to the call.
When Participant starts joining to the call but is not joined yet, Host loses internet connection.
Host is reconnecting.
Host restored internet connection and is back to the room.
From iOS side we receive 'participantDidConnect'.
Participant joins to the call.
'didSubscribeToDataTrack' method is not called on iOS side.
'remoteDataTrackDidReceiveString' method is not called when RemoteDataTrack is sent from Web.
Code
Called when Participant joined to the call.
func participantDidConnect(room: Room, participant: RemoteParticipant) {
participant.delegate = self
}
Expected to be called.
func didSubscribeToDataTrack(dataTrack: RemoteDataTrack,
publication: RemoteDataTrackPublication,
participant: RemoteParticipant) {
dataTrack.delegate = self
}
Hello.
I have an issue which i will describe with scenario:
Description
Host - creator of the room, iOS side.
Participant - somebody who joins to the room, Web side.
Host creates the room and the call starts. The internet connection is lost on the Host side for 5-10 seconds. At the same moment, while internet connection is still missing on the Host side, Participant starts joining to the meeting, it can take a few seconds to connect Participant to the room. Then the internet connection is restored on the Host side, so that the method 'roomDidReconnect' is called but 'roomDidDisconnect' is not on the Host side. After 'roomDidReconnect' is called, Participant joins to the room and method 'participantDidConnect' is called on the Host side.
Expected Behavior
After method 'participantDidConnect' i expect that the method 'didSubscribeToDataTrack(dataTrack: RemoteDataTrack, publication: RemoteDataTrackPublication, participant: RemoteParticipant)' should be triggered, to do 'dataTrack.delegate = self' for work with DataTracks after that. In the end, i expect 'remoteDataTrackDidReceiveString' be triggered when 'RemoteDataTrack' is sent from Web.
Actual Behavior
'didSubscribeToDataTrack' isn't triggered so i can't assign 'dataTracks.delegate = self' and work with dataTraks when they are sent from the Web.
Steps to Reproduce
Code
Called when Participant joined to the call.
func participantDidConnect(room: Room, participant: RemoteParticipant) {
participant.delegate = self
}
Expected to be called.
func didSubscribeToDataTrack(dataTrack: RemoteDataTrack,
publication: RemoteDataTrackPublication,
participant: RemoteParticipant) {
dataTrack.delegate = self
}
Reproduces How Often
Each time from the flow described.
Video iOS SDK
'TwilioVideo', '5.5.0'
'TwilioConversationsClient', '2.2.5'
Xcode
Xcode 14.1
iOS Version
iOS 16.2
iOS Device
iPad Pro 11
The text was updated successfully, but these errors were encountered: