Interface AntPlusGeocachePcc.ISimpleProgressUpdateReceiver

Enclosing class:
AntPlusGeocachePcc

public static interface AntPlusGeocachePcc.ISimpleProgressUpdateReceiver
Receiver for the SimpleProgressUpdate event, which is: Communicates the work done. The percentage of work done is 100*(workUnitsFinished/totalUnitsWork).
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    onNewSimpleProgressUpdate(int workUnitsFinished, int totalUnitsWork)
    Receives the data from a SimpleProgressUpdate event.
  • Method Details

    • onNewSimpleProgressUpdate

      void onNewSimpleProgressUpdate(int workUnitsFinished, int totalUnitsWork)
      Receives the data from a SimpleProgressUpdate event.
      Parameters:
      workUnitsFinished - The current number of work units finished.
      totalUnitsWork - The total number of work units to finish in the given task.