diff -r f345bda72bc4 -r 43e37759235e Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/class_m_transaction_observer.html
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/class_m_transaction_observer.html Tue Mar 30 16:16:55 2010 +0100
@@ -0,0 +1,171 @@
+
+
+
+
+
MTransactionObserver Class Reference
+
Inherited by CTaskManagerAppView.
+
+
List of all members.
+
+
Detailed Description
+
A mixin class for notifying about transactions.
+
+
Definition at line 34 of file TaskManagerEngine.h.
+
Member Function Documentation
+
+
+
+
+
+ virtual void MTransactionObserver::OpeningConnectionL |
+ ( |
+ |
+ ) |
+ [pure virtual] |
+
+
+
+
+
Called when a GPRS connection is being opened.
+
+
+
+
+
+
+
+
+ virtual void MTransactionObserver::SuccessL |
+ ( |
+ const CResponse & |
+ aResponse |
+ ) |
+ [pure virtual] |
+
+
+
+
+
Called when aa transaction has successfully finished.
+
- Parameters:
-
+
+ | aResponse | contains the response received from the server. |
+
+
+
+
+
+
+
+
+
+
+
+ virtual void MTransactionObserver::FailedL |
+ ( |
+ const TInt & |
+ aError |
+ ) |
+ [pure virtual] |
+
+
+
+
+
Called when a transaction has failed.
+
- Parameters:
-
+
+ | aError | the error code. |
+
+
+
+
+
+
+
+
+
+
+
+ virtual void MTransactionObserver::ConnectingToServerL |
+ ( |
+ const TBool & |
+ aLoadingTasks |
+ ) |
+ [pure virtual] |
+
+
+
+
+
Called when a transaction is initiated.
+
- Parameters:
-
+
+ | aLoadingTasks | ETrue if downloading tasks, EFalse if completing a task. |
+
+
+
+
+
+
+
+
+
+
+
+ virtual void MTransactionObserver::CancelledL |
+ ( |
+ |
+ ) |
+ [pure virtual] |
+
+
+
+
+
Called when user cancelled the transaction.
+
+
+
+
+
+
+
+
+ virtual void MTransactionObserver::ErrorL |
+ ( |
+ const TDesC & |
+ aErrorMsg |
+ ) |
+ [pure virtual] |
+
+
+
+
+
Called when the user tries to initialise a transaction, but settings are faulty.
+
- Parameters:
-
+
+ | aErrorMsg | error message. |
+
+
+
+
+
+
+
+