API published in: S60 3rd Ed FP 1
Link against: cenrepnotifhandler.lib
Required Capabilities
None
Exceptions
Capability required depends on platform security of the repository.
#include <cenrepnotifyhandler.h>
Inherited by CEikEdwin::CEikEdwinExtension [private]
.
The Client derives a class from this interface and implements the HandleNotify-methods that interest it. An empty default implementation is provided for all of the methods. In debug build the default implementations print out a debug trace.
Public Member Functions |
|
virtual IMPORT_C void | HandleNotifyInt (TUint32 aId, TInt aNewValue) |
This callback method is used to notify the client about changes for integer value keys, i.e. |
|
virtual IMPORT_C void | HandleNotifyReal (TUint32 aId, TReal aNewValue) |
This callback method is used to notify the client about changes for real value keys, i.e. |
|
virtual IMPORT_C void | HandleNotifyString (TUint32 aId, const TDesC16 &aNewValue) |
This callback method is used to notify the client about changes for string value keys, i.e. |
|
virtual IMPORT_C void | HandleNotifyBinary (TUint32 aId, const TDesC8 &aNewValue) |
This callback method is used to notify the client about changes for binary value keys, i.e. |
|
virtual IMPORT_C void | HandleNotifyGeneric (TUint32 aId) |
This callback method is used to notify the client about changes in keys when the whole repository is listened for. |
|
virtual IMPORT_C void | HandleNotifyError (TUint32 aId, TInt aError, CCenRepNotifyHandler *aHandler) |
This callback method is used to notify the client about errors in the handler. |
|
This callback method is used to notify the client about changes for binary value keys, i.e. key type is EBinaryKey.
|
|
This callback method is used to notify the client about errors in the handler. Any error in handling causes the handler to stop handling any more notifications. Handling can be restarted with a call to aHandler->StartListeningL(), if the error is non-fatal. However, be careful to trap any errors from this call if this is done.
|
|
This callback method is used to notify the client about changes in keys when the whole repository is listened for. Note: It is not guaranteed that a notification will be received for all keys, if multiple keys are changed in rapid succession by multiple threads or when the whole repository is reset, therefore only listen for whole repository if this is not an issue.
|
|
This callback method is used to notify the client about changes for integer value keys, i.e. key type is EIntKey.
|
|
This callback method is used to notify the client about changes for real value keys, i.e. key type is ERealKey.
|
|
This callback method is used to notify the client about changes for string value keys, i.e. key type is EStringKey.
|