accessoryservices/accessoryserver/inc/Server/AccSrvProcessCommandTimer.h
changeset 0 4e1aa6a622a0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/accessoryservices/accessoryserver/inc/Server/AccSrvProcessCommandTimer.h	Tue Feb 02 00:53:00 2010 +0200
@@ -0,0 +1,124 @@
+/*
+* Copyright (c) 2002-2004 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:  Timer for ProcessCommand handling
+*
+*/
+
+
+#ifndef CACCSRVPROCESSCOMMANDTIMER_H
+#define CACCSRVPROCESSCOMMANDTIMER_H
+
+// INCLUDES
+#include "acc_debug.h"
+#include <e32base.h>
+
+// CONSTANTS
+const TInt KInitCmdTimeOut    = 5000000;
+const TInt KProcessCmdTimeOut = 2500000;
+
+// MACROS
+
+// DATA TYPES
+
+// FUNCTION PROTOTYPES
+
+// FORWARD DECLARATIONS
+class MAccSrvProcessCommandObserver;
+
+// CLASS DECLARATION
+
+/**
+*  Timer class for time out of ProcessCommands.
+*
+*  @lib AccServer.exe
+*  @since S60 3.1
+*/
+NONSHARABLE_CLASS( CAccSrvProcessCommandTimer ) : public CTimer
+    {
+    public: // Constructors and destructor
+
+        /**
+        * Two-phased constructor.
+        */
+        static CAccSrvProcessCommandTimer* NewL(
+            MAccSrvProcessCommandObserver* aProcessCommandObserver,
+            TInt aTime = KProcessCmdTimeOut );
+
+        /**
+        * Destructor.
+        */
+        virtual ~CAccSrvProcessCommandTimer();
+
+    public: // New functions
+
+       /**
+        * Starts the timer.
+        * @since S60 3.1
+        * @param void
+        * @return void
+        */
+        void StartTimer();
+
+    public: // Functions from base classes
+
+    protected: // New functions
+
+    protected: // Functions from base classes
+
+        /**
+        * From CActive Handles an active object's request completion event.
+        */
+        void RunL();
+        
+        /**
+        * From CActive Handles RunL's leave cases
+        */
+        TInt RunError( TInt aError );
+
+    private:
+
+        /**
+        * C++ default constructor.
+        */
+        CAccSrvProcessCommandTimer(
+            MAccSrvProcessCommandObserver* aProcessCommandObserver,
+            TInt aTime );
+
+        /**
+        * By default Symbian 2nd phase constructor is private.
+        */
+        void ConstructL();
+
+    public:     // Data
+
+    protected:  // Data
+
+    private:    // Data
+
+        TInt iTime; // TimeOut time
+
+        // Pointer to ProcessCommandObserver object
+        MAccSrvProcessCommandObserver* iProcessCommandObserver; // Not owned
+
+    public:     // Friend classes
+
+    protected:  // Friend classes
+
+    private:    // Friend classes
+
+    };
+
+#endif // CACCSRVPROCESSCOMMANDTIMER_H
+
+// End of File