os/persistentdata/featuremgmt/featuremgr/src/serverexe/featmgrtimer.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:
    15 *
    16 */
    17 
    18 
    19 
    20 #ifndef FEATMGRTIMER_H
    21 #define FEATMGRTIMER_H
    22 
    23 //  INCLUDES
    24 #include <e32base.h>
    25 
    26 /**
    27 *  An interface for handling timer expiration events.
    28 */
    29 NONSHARABLE_CLASS(MFeatMgrTimerCallback)
    30     {
    31     public:
    32         /** 
    33         * Called when the timer fires
    34         */
    35         virtual void TimerFired() = 0;
    36     };
    37 
    38 /**
    39 *  Timer class for supervising Genericting time.
    40 */
    41 NONSHARABLE_CLASS(CFeatMgrTimer) : public CTimer
    42     {
    43     public:  // Constructors and destructor
    44 
    45         /**
    46         * Two-phased constructor.
    47         *
    48         * @param aCallback Callback object for informing timer firing
    49         */
    50         static CFeatMgrTimer* NewL( MFeatMgrTimerCallback& aCallback );
    51                 
    52         /**
    53         * Destructor.
    54         */
    55         ~CFeatMgrTimer();
    56         
    57         
    58     public:  // From base classes
    59 
    60         // From CTimer
    61         void RunL();
    62         
    63     protected:
    64     
    65         /**
    66         * Constructor
    67         *
    68         * @param aCallback Callback object for informing timer firing
    69         */
    70         CFeatMgrTimer( MFeatMgrTimerCallback& aCallback );
    71         
    72   private:
    73         
    74         /**
    75         * By default Symbian 2nd phase constructor is private.
    76         */
    77         void ConstructL();
    78                      
    79         /**
    80         * Set the timer.
    81         *
    82         * @param aInterval timer will expire after this duration.
    83         */
    84         void Set( const TTimeIntervalMicroSeconds32& aInterval );
    85         
    86     private: // Data
    87         MFeatMgrTimerCallback&        iCallback;    // Callback for timer fired messages. Not owned.
    88     };
    89 
    90 #endif // FEATMGRTIMER_H   
    91             
    92 // End of File