-
public interface RecordingDataListenerListener for getting notified when new recording data is becoming available.
-
-
Method Summary
Modifier and Type Method Description abstract voidonNewData(RecordingType type, RecordingData data, boolean handleSynchronously)Called when new recording data becomes available. -
-
Method Detail
-
onNewData
abstract void onNewData(RecordingType type, RecordingData data, boolean handleSynchronously)
Called when new recording data becomes available. Handle quickly, e.g. typically schedulestreaming of the new available data in another thread. Do not forget to when the data has been uploaded.
- Parameters:
type- type of the recordingdata- the new data availablehandleSynchronously- whether to handle the data synchronously
-
-
-
-