|
|
|
|
Location:
sipconcreteprofileobserver.h
class MSIPConcreteProfileObserver;
Observer class to be implemented by users of CSIPConcreteProfile It provides event notifications related to profiles.
Defined in MSIPConcreteProfileObserver:
AddedL(), ErrorOccurredL(), RegistrationStatusChangedL(), RemovedL(), UpdatedL()
virtual void RegistrationStatusChangedL(TUint32 aProfileId, TInt aStatus, TUint32 aStatusId)=0;
SIP profile registration status changed event Event is send to those observers, who have the corresponding profile instantiated.
|
virtual void AddedL(TUint32 aProfileId)=0;
SIP profile creation event. Event is send to all observers.
|
virtual void RemovedL(TUint32 aProfileId)=0;
SIP profile destruction event. Event is send to those observers, who have the corresponding profile instantiated.
|
virtual void UpdatedL(TUint32 aProfileId, TUint aSize)=0;
SIP profile information update event Event is send to those observers, who have the corresponding profile instantiated.
|
virtual void ErrorOccurredL(TUint32 aProfileId, TInt aStatus, TInt aError)=0;
An asynchronous error has occurred related to SIP profile Event is send to those observers, who have the corresponding profile instantiated.
|