-
- All Implemented Interfaces:
-
us.zoom.contactscenter.api.ZoomCCService
public interface ZoomCCVideoService implements ZoomCCService
Video service api
-
-
Method Summary
Modifier and Type Method Description abstract Unit
addListener(ZoomCCVideoListener listener)
Add video service callback. abstract Unit
removeListener(ZoomCCVideoListener l)
Remove video service callback abstract Integer
endVideo()
End video. abstract Unit
setVideoPreviewOption(VideoPreviewOption option)
Enable or disable video preview dialog and turn the camera on or off when entering the video call. abstract Unit
setAutoJoinWhenVideoCreated(Boolean enable)
Enable or disable auto-join when creating a video call. abstract Unit
setUseBackwardFacingCameraByDefault(Boolean enable)
Enable or disable using the backward facing camera by default when creating a video call. -
-
Method Detail
-
addListener
abstract Unit addListener(ZoomCCVideoListener listener)
Add video service callback.
- Parameters:
listener
- Video service callback.
-
removeListener
abstract Unit removeListener(ZoomCCVideoListener l)
Remove video service callback
- Parameters:
l
- Video service callback.
-
endVideo
abstract Integer endVideo()
End video.
-
setVideoPreviewOption
abstract Unit setVideoPreviewOption(VideoPreviewOption option)
Enable or disable video preview dialog and turn the camera on or off when entering the video call.
- Parameters:
option
- Use the video preview option to enable or disable the video preview dialog.
-
setAutoJoinWhenVideoCreated
abstract Unit setAutoJoinWhenVideoCreated(Boolean enable)
Enable or disable auto-join when creating a video call.
- Parameters:
enable
- If true, alert dialog will be disabled and a user will enter the video call automatically.
-
setUseBackwardFacingCameraByDefault
abstract Unit setUseBackwardFacingCameraByDefault(Boolean enable)
Enable or disable using the backward facing camera by default when creating a video call.
- Parameters:
enable
- If true, the backward facing camera will be used when entering the video call instead of front facing camera.
-
-
-
-