ProgressData

class ProgressData()

ProgressData to manage a done and a todo counter.

Each SyncData() instance has an associated ProgressData instance. See SyncData.progressData(). The information of that ProgressData instance is used, when the current syncstate is prefixed by send., eval. or prepare.. See SyncData.setSyncState().

ProgressData.done

Getter for the done counter.

ProgressData.inc(value=1)

Increment the done counter.

Arguments:
  • value (integer) – Optional Set incrementation value.
ProgressData.reset(done=0, todo=0)

Reset done and todo counter.

Arguments:
  • done (integer) – Optional Set a value for the done counter.
  • todo (integer) – Optional Set a value for the todo counter.
ProgressData.todo

Getter for the todo counter.