Package 

Interface RecordingDataListener


  • 
    public interface RecordingDataListener
    
                        

    Listener for getting notified when new recording data is becoming available.

    • Method Summary

      Modifier and Type Method Description
      abstract void onNewData(RecordingType type, RecordingData data, boolean handleSynchronously) Called when new recording data becomes available.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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 recording
        data - the new data available
        handleSynchronously - whether to handle the data synchronously