#include <app/caldataexchange.h>
class MCalDataExchangeCallBack |
Public Member Functions | |
---|---|
pure virtual void | Completed() |
virtual TInt | NumberOfEntriesToHandleAtOnce() |
pure virtual void | Progress(TInt) |
A call back class to show the progress of long-running operations.
When a long-running operation is carried out, this class is used to signal its progress, and when the function is complete.
void | Completed | ( | ) | [pure virtual] |
Progress callback.
This calls the observing class when the current operation is finished.
void | Progress | ( | TInt | aPercentageCompleted | ) | [pure virtual] |
Progress callback.
This calls the observing class with the percentage complete of the current operation. This also propagates any error to the observing class.
Parameter | Description |
---|---|
aPercentageCompleted | The percentage complete. |