Update contrib.
1 // Copyright (c) 2004-2010 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef __SCHTIMER_H__
17 #define __SCHTIMER_H__
26 class CConditionManager;
27 class TTaskSchedulerCondition;
31 Defines the types of schedules changes (condition and/or a time)
36 //Update both condition and a time based schedule
39 //Update only time based schedule
43 // class CScheduleCriteriaManager
44 // This class manages and determines when a schedule is due, based on
45 // either a set of condition and/or a time. The conditions and time
46 // are set and overridden via the ReplaceScheduleL method.
47 NONSHARABLE_CLASS(CScheduleCriteriaManager) : public CActive
50 static CScheduleCriteriaManager* NewL(CTaskScheduler& aOwner);
51 ~CScheduleCriteriaManager();
54 void ReplaceScheduleL(CSchedule& aSchedule, TSchChangeType aSchChange = EConditionAndTime, TBool aNotFirstTime = EFalse);
55 void ReplaceScheduleL(const TTsTime& aNextTime,
57 void RemoveSchedule(TInt aSchedule);
58 void DueSchedule(TInt aScheduleHandle);
61 CScheduleCriteriaManager(CTaskScheduler& aOwner);
65 TInt RunError(TInt aError);
68 void CompleteRequest();
70 void RemoveTimer(CScheduleTimer* aTimer);
72 CScheduleTimer* Find(TInt aSchedule);
74 void RemoveCondition(CConditionManager* aTimer);
75 void RemoveConditions();
76 CConditionManager* FindCondition(TInt aSchedule);
79 CTaskScheduler& iTaskScheduler;
80 TSglQue<CScheduleTimer> iTimers;
81 TSglQue<CConditionManager> iConditions;
82 TInt iDueScheduleHandle;