resStreamingProgressUpdated function

void resStreamingProgressUpdated(
  1. int currentEntry,
  2. int overallEntries
)

Implementation

void resStreamingProgressUpdated(int currentEntry, int overallEntries) {
  CLCmdStreamingData.progress.add(currentEntry / overallEntries);
  slog(
      'resStreamingProgressUpdated: $currentEntry/$overallEntries=${currentEntry / overallEntries}');
}