diff -r 000000000000 -r 09774dfdd46b presetserver/clientinc/psservnotifier.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/presetserver/clientinc/psservnotifier.h Mon Apr 19 14:01:53 2010 +0300 @@ -0,0 +1,93 @@ +/* +* Copyright (c) 2006-2006 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: Client-server preset notifier +* +*/ + + +#ifndef R_RPSPRESETNOTIFIER_H +#define R_RPSPRESETNOTIFIER_H + +#include +#include + +class RPSServ; + +/** + * Client-server preset notifier. + */ +class RPSServNotifier + { + +public: + + /** + * Constructor. + * + * @param aServer Session with the preset server. + * @param aId The ID of the preset to observe, or KErrNotFound + * if all changes should result in a notification. + */ + RPSServNotifier( RPSServ& aServer, TInt aId ); + + /** + * Closes all resources allocated. + */ + void Close(); + + /** + * Request a notify when the preset with the supplied identifier is changed. + * + * @param aStatus The request status to signal when the preset is changed. + */ + void Notify( TRequestStatus& aStatus ); + + /** + * Cancels the pending notify request. + */ + void CancelNotify(); + + /** + * Returns the id of the preset. + * + * @return Id of the preset. + */ + TInt Id() const; + + /** + * Returns the data handler of the preset. + * + * @return Data handler of the preset. + */ + TUid DataHandler() const; + + /** + * Returns the reason of the change. + * + * @return Reason of the change. + */ + MPSPresetObserver::TPSReason Reason() const; + +private: + + /** The preset server. */ + RPSServ& iServer; + /** Packaged data of the latest notify. */ + TPckgBuf iData; + /** The ID of the preset to observe, or KErrNotFound if all changes should result in a notification. */ + TInt iId; + + }; + +#endif // R_RPSPRESETNOTIFIER_H