Constructor and Description |
---|
Call.Observer() |
Modifier and Type | Method and Description |
---|---|
abstract void |
callUpdated(CallUpdateEvent state,
CallConfig callConfig,
Cause cause)
This method is called when receiving an update event for an established call.
|
abstract void |
mediaStateChanged(MediaStreamEvent mediaStreamEvent,
org.webrtc.MediaStream mediaStream)
This method is called whenever the media state is changed.
|
abstract void |
stateChanged(CallState state,
Cause cause)
This method is called whenever the call state is changed.
|
public abstract void stateChanged(CallState state, Cause cause)
state
- The CallState object indicating current call state.cause
- The source cause for the notification.public abstract void mediaStateChanged(MediaStreamEvent mediaStreamEvent, org.webrtc.MediaStream mediaStream)
mediaStreamEvent
- media stream event typemediaStream
- the media streampublic abstract void callUpdated(CallUpdateEvent state, CallConfig callConfig, Cause cause)
state
- Update statecallConfig
- call configurationcause
- The source cause for the notification.