onRemoteDataRecordProgressUpdate property

(void Function(ZegoDataRemoteRecordProgress progress, ZegoDataRecordConfig config, String streamID)?) onRemoteDataRecordProgressUpdate
getter/setter pair

The callback to report the current recording progress.

Available since: 3.21.0 Description: Remote Recording progress update callback, triggered at regular intervals during recording. Use cases: Developers can do UI hints for the user interface. When to trigger: After startRecordingRemoteData is called, If configured to require a callback, timed trigger during recording. Restrictions: None.

  • progress File recording progress, which allows developers to hint at the UI, etc.
  • config Record config.
  • streamID stream id.

Implementation

static void Function(
    ZegoDataRemoteRecordProgress progress,
    ZegoDataRecordConfig config,
    String streamID)? onRemoteDataRecordProgressUpdate;