TWCParticipantDelegate Protocol Reference
| Conforms to | NSObject |
|---|---|
| Declared in | TWCParticipant.h |
– participant:addedVideoTrack:
Called when a video track is added to the conversation.
- (void)participant:(nonnull TWCParticipant *)participant addedVideoTrack:(nonnull TWCVideoTrack *)videoTrackParameters
participant |
The participant. |
|---|---|
videoTrack |
The added video track. |
conversation |
The conversation. |
Discussion
Called when a video track is added to the conversation.
Declared In
TWCParticipant.h
– participant:removedVideoTrack:
Called when a participant removes a video track.
- (void)participant:(nonnull TWCParticipant *)participant removedVideoTrack:(nonnull TWCVideoTrack *)videoTrackParameters
participant |
The participant. |
|---|---|
videoTrack |
The removed video track. |
conversation |
The conversation. |
Discussion
Called when a participant removes a video track.
Declared In
TWCParticipant.h
– participant:addedAudioTrack:
Called when a participant adds an audio track.
- (void)participant:(nonnull TWCParticipant *)participant addedAudioTrack:(nonnull TWCAudioTrack *)audioTrackParameters
participant |
The participant. |
|---|---|
audioTrack |
The added audio track. |
conversation |
The conversation. |
Discussion
Called when a participant adds an audio track.
Declared In
TWCParticipant.h
– participant:removedAudioTrack:
Called when a participant removes an audio track.
- (void)participant:(nonnull TWCParticipant *)participant removedAudioTrack:(nonnull TWCAudioTrack *)audioTrackParameters
participant |
The participant. |
|---|---|
audioTrack |
The removed audio track. |
conversation |
The conversation. |
Discussion
Called when a participant removes an audio track.
Declared In
TWCParticipant.h
– participant:disabledTrack:
Called when a participant’s media track is disabled.
- (void)participant:(nonnull TWCParticipant *)participant disabledTrack:(nonnull TWCMediaTrack *)trackParameters
participant |
The participant. |
|---|---|
track |
The track which was disabled. |
conversation |
The conversation. |
Discussion
Called when a participant’s media track is disabled.
Declared In
TWCParticipant.h
– participant:enabledTrack:
Called when a participant’s media track is enabled.
- (void)participant:(nonnull TWCParticipant *)participant enabledTrack:(nonnull TWCMediaTrack *)trackParameters
participant |
The participant. |
|---|---|
track |
The track which was enabled. |
conversation |
The conversation. |
Discussion
Called when a participant’s media track is enabled.
Declared In
TWCParticipant.h