Link against: SensrvClient.lib
#include <sensrvchannelconditionlistener.h>
This class is for use with the CSensrvChannel::StartConditionListeningL() method. Clients wishing to use condition listening must inherit from this class and provide a reference to an instance of it in CSensrvChannel::StartConditionListeningL().
CSensrvChannel::StopConditionListening()
Public Member Functions | |
virtual void | ConditionMet (CSensrvChannel &aChannel, CSensrvChannelConditionSet &aChannelConditionSet, TDesC8 &aValue)=0 |
Callback implemented by a client so that they can be notified when a channel ConditionSet is met. | |
virtual void | ConditionError (CSensrvChannel &aChannel, TSensrvErrorSeverity aError)=0 |
Callback implemented by a client so that they can be notified when condition listening has failed. | |
virtual void | GetChannelConditionListenerInterfaceL (TUid aInterfaceUid, TAny *&aInterface)=0 |
Callback to future proof this API so that additional callbacks can be added in the future without breaking binary compatibility. |
|
Callback implemented by a client so that they can be notified when condition listening has failed. If the error is fatal the channel will be closed, the sensor server session has been terminated and the channel object is no longer useable. If the error is minor, some condition matches have potentially been missed, however listening is still active. Clients providing an implementation for this callback must ensure that the operation does not leave. If a leave does occur then the behaviour is undefined.
|
|
Callback implemented by a client so that they can be notified when a channel ConditionSet is met. If a client wants to use same ConditionSet after receiving this notification, the client must add ConditionSet again to the channel object. If the ConditionSet is no longer required the client can destroy it. If the ConditionSet contains more than one condition, it is not known which of the individual conditions in the set were met. Clients providing an implementation for this callback must ensure that the operation does not leave. If a leave does occur then the behaviour is undefined.
|
|
Callback to future proof this API so that additional callbacks can be added in the future without breaking binary compatibility.
|