Package | Description |
---|---|
oracle.wsc.android.call |
Provides a Call handling API.
|
Modifier and Type | Method and Description |
---|---|
CallConfig |
Call.getCallConfig()
Gets the CallConfig for the current call.
|
Modifier and Type | Method and Description |
---|---|
void |
Call.accept(CallConfig config,
Map extHeaders,
org.webrtc.MediaStream[] localStreams)
Accepts the received Call invitation.
|
void |
Call.accept(CallConfig config,
org.webrtc.MediaStream[] localStreams)
Accepts the received Call invitation.
|
abstract void |
CallPackage.Observer.callArrived(Call call,
CallConfig callConfig,
Map extHeaders)
An event handler which is called when a new call is received.
|
abstract void |
Call.Observer.callUpdated(CallUpdateEvent state,
CallConfig callConfig,
Cause cause,
Map extHeaders)
Called when receiving an update event for an established call.
|
void |
Call.start(CallConfig config,
Map extHeaders,
org.webrtc.MediaStream[] localStreams)
Starts the call represented by itself.
|
void |
Call.start(CallConfig config,
org.webrtc.MediaStream[] localStreams)
Starts the call represented by itself.
|
void |
Call.update(CallConfig config,
Map extHeaders,
org.webrtc.MediaStream[] localStreams)
Updates the call, for example, to add video, remove video, mute and unmute audio, or mute and unmute video
and so on.
|
void |
Call.update(CallConfig config,
org.webrtc.MediaStream[] localStreams)
Updates the call, for example, to add video, remove video, mute and unmute audio, or mute and unmute video
and so on.
|