Package com.twilio.video
Interface ScreenCapturer.Listener
-
- Enclosing class:
- ScreenCapturer
public static interface ScreenCapturer.Listener
Interface that provides events and errors related toScreenCapturer
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onFirstFrameAvailable()
Indicates when the first frame has been captured from the screen.void
onScreenCaptureError(java.lang.String errorDescription)
Reports an error that occurred inScreenCapturer
.
-
-
-
Method Detail
-
onScreenCaptureError
void onScreenCaptureError(@NonNull java.lang.String errorDescription)
Reports an error that occurred inScreenCapturer
.- Parameters:
errorDescription
- description of the error that occurred.
-
onFirstFrameAvailable
void onFirstFrameAvailable()
Indicates when the first frame has been captured from the screen.
-
-