Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
ZoomSDKVideoSource.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
3import java.util.List;
4
8public interface ZoomSDKVideoSource {
9
17 void onInitialize(ZoomSDKVideoSender sender, List<ZoomSDKVideoCapability> support_cap_list, ZoomSDKVideoCapability suggest_cap);
18
25 void onPropertyChange(List<ZoomSDKVideoCapability> support_cap_list, ZoomSDKVideoCapability suggest_cap);
26
31
35 void onStopSend();
36
41}
Interface for video sender operations.
Interface for external video source operations.
void onInitialize(ZoomSDKVideoSender sender, List< ZoomSDKVideoCapability > support_cap_list, ZoomSDKVideoCapability suggest_cap)
Callback event when the video source is initialized.
void onStartSend()
Callback event when the video source starts sending.
void onUninitialized()
Callback event when the video source is uninitialized.
void onPropertyChange(List< ZoomSDKVideoCapability > support_cap_list, ZoomSDKVideoCapability suggest_cap)
Callback event when the video source property changes.
void onStopSend()
Callback event when the video source stops sending.