Package com.storedobject.vaadin
Interface MediaCapture.DataReceiver
- Enclosing interface:
MediaCapture
public static interface MediaCapture.DataReceiver
Interface to be implemented in order to receive data from the
MediaCapture
as a stream like audio/video/image etc.-
Method Summary
Modifier and TypeMethodDescriptionvoid
aborted()
This method is invoked if streaming is aborted due to any errors.void
finished()
This method is invoked when end-of-stream is reached.getOutputStream
(String mimeType) Get the output stream to which streamed data can be saved.
-
Method Details
-
getOutputStream
Get the output stream to which streamed data can be saved.- Parameters:
mimeType
- Mime type of the data stream- Returns:
- Output stream.
-
finished
void finished()This method is invoked when end-of-stream is reached. -
aborted
void aborted()This method is invoked if streaming is aborted due to any errors.
-