![]() |
Intel® Collaboration Suite for WebRTC
version 4.3
Open WebRTC Toolkit (OWT) Client SDK for Android*
|
Publication handles the actions on a LocalStream published by a ConferenceClient. More...
Public Member Functions | |
void | addObserver (PublicationObserver observer) |
Add a PublicationObserver. More... | |
void | removeObserver (PublicationObserver observer) |
Remove a PublicationObserver. More... | |
void | mute (final TrackKind trackKind, final ActionCallback< Void > callback) |
Stop sending the media track data to conference. More... | |
void | unmute (final TrackKind trackKind, final ActionCallback< Void > callback) |
Start to send the media track data that has been stopped before to conference. More... | |
void | getStats (final ActionCallback< RTCStatsReport > callback) |
Get the PeerConnection stats. More... | |
void | stop () |
Stop publishing the LocalStream associated with the Publication to the conference. | |
![]() | |
String | id () |
abstract void | getStats (ActionCallback< RTCStatsReport > callback) |
abstract void | stop () |
Publication handles the actions on a LocalStream published by a ConferenceClient.
|
inline |
Add a PublicationObserver.
observer | PublicationObserver to be added. |
|
inline |
Get the PeerConnection stats.
callback | ActionCallback.onSuccess will be invoked with RTCStatsReport when succeeds to get the stats. Otherwise when fails to do so, ActionCallback.onFailure will be invoked with the corresponding OwtError. |
|
inline |
Stop sending the media track data to conference.
trackKind | TrackKind of the media to be stopped. |
callback | ActionCallback.onSuccess will be invoked when succeeds to mute. Otherwise when fails to do so, ActionCallback.onFailure will be invoked with the corresponding OwtError. |
|
inline |
Remove a PublicationObserver.
observer | PublicationObserver to be removed. |
|
inline |
Start to send the media track data that has been stopped before to conference.
trackKind | TrackKind of the media to be started. |
callback | ActionCallback.onSuccess will be invoked when succeeds to unmute. Otherwise when fails to do so, ActionCallback.onFailure will be invoked with the corresponding OwtError. |