ParticipantDeviceListener
public class ParticipantDeviceListenerStub extends java.lang.Object implements ParticipantDeviceListener
Constructor | Description |
---|---|
ParticipantDeviceListenerStub() |
Modifier and Type | Method | Description |
---|---|---|
void |
onIsMuted(ParticipantDevice participantDevice,
boolean isMuted) |
Callback used to notify that this participant device is muted or is no longer
muted. |
void |
onIsSpeakingChanged(ParticipantDevice participantDevice,
boolean isSpeaking) |
Callback used to notify that is this participant device speaking has changed.
|
void |
onStateChanged(ParticipantDevice participantDevice,
ParticipantDeviceState state) |
Callback used to notify that participant device changed state.
|
void |
onStreamAvailabilityChanged(ParticipantDevice participantDevice,
boolean available,
StreamType streamType) |
Callback used to notify that participant device stream availability has
changed. |
void |
onStreamCapabilityChanged(ParticipantDevice participantDevice,
MediaDirection direction,
StreamType streamType) |
Callback used to notify that participant device stream capability has changed.
|
void |
onVideoDisplayErrorOccurred(ParticipantDevice participantDevice,
int errorCode) |
Callback to notify that there are errors from the video rendering of the
participant device. |
public void onStreamAvailabilityChanged(@NonNull ParticipantDevice participantDevice, boolean available, StreamType streamType)
ParticipantDeviceListener
onStreamAvailabilityChanged
in interface ParticipantDeviceListener
participantDevice
- LinphoneParticipantDevice object public void onStateChanged(@NonNull ParticipantDevice participantDevice, ParticipantDeviceState state)
ParticipantDeviceListener
onStateChanged
in interface ParticipantDeviceListener
participantDevice
- LinphoneParticipantDevice object public void onVideoDisplayErrorOccurred(@NonNull ParticipantDevice participantDevice, int errorCode)
ParticipantDeviceListener
onVideoDisplayErrorOccurred
in interface ParticipantDeviceListener
participantDevice
- LinphoneParticipantDevice object errorCode
- the error code coming from the display render. public void onIsMuted(@NonNull ParticipantDevice participantDevice, boolean isMuted)
ParticipantDeviceListener
onIsMuted
in interface ParticipantDeviceListener
participantDevice
- LinphoneParticipantDevice object isMuted
- is this participant device muted public void onStreamCapabilityChanged(@NonNull ParticipantDevice participantDevice, MediaDirection direction, StreamType streamType)
ParticipantDeviceListener
onStreamCapabilityChanged
in interface ParticipantDeviceListener
participantDevice
- LinphoneParticipantDevice object direction
- participant device's audio direction public void onIsSpeakingChanged(@NonNull ParticipantDevice participantDevice, boolean isSpeaking)
ParticipantDeviceListener
onIsSpeakingChanged
in interface ParticipantDeviceListener
participantDevice
- LinphoneParticipantDevice object isSpeaking
- is this participant device speaking