os/ossrv/genericservices/taskscheduler/SCHSVR/SCHENTRY.H
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/genericservices/taskscheduler/SCHSVR/SCHENTRY.H	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,66 @@
     1.4 +// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// Defines TScheduleEntry hierachy: 
    1.18 +// - const classes which tell you the next time they're due
    1.19 +// - CSchedule is an aggregate of TScheduleEntry objects
    1.20 +// 
    1.21 +//
    1.22 +
    1.23 +#if !defined(__SCHENTRY_H__)
    1.24 +#define __SCHENTRY_H__
    1.25 +
    1.26 +//System Includes
    1.27 +#include <e32base.h>
    1.28 +
    1.29 +//User Includes
    1.30 +#include "SCHINFO.H"
    1.31 +
    1.32 +/**
    1.33 +TScheduleEntry
    1.34 +@internalComponent
    1.35 +*/
    1.36 +class TScheduleEntry
    1.37 +	{
    1.38 +	friend class ScheduleEntryFactory;
    1.39 +	
    1.40 +public:
    1.41 +	//returns the next due time for this schedule entry.
    1.42 +	const TTsTime& NextScheduledTime(const TTsTime& aTime);
    1.43 +	const TTsTime& DueTime() const;
    1.44 +	const TScheduleEntryInfo2& Info() const;
    1.45 +
    1.46 +	static TInt Offset();
    1.47 +
    1.48 +protected:
    1.49 +	TScheduleEntry(TScheduleEntryInfo2& aInfo);	
    1.50 +private:	
    1.51 +	virtual void CalculateNextPossibleRunDate(TTime& aTime) const = 0 ;
    1.52 +
    1.53 +private:	
    1.54 +	TSglQueLink iLink; // queue management
    1.55 +	TScheduleEntryInfo2 iEntryInfo; 
    1.56 +	TTsTime iDueTime;
    1.57 +	};
    1.58 +
    1.59 +/**
    1.60 +@internalComponent
    1.61 +*/
    1.62 +class ScheduleEntryFactory
    1.63 +	{
    1.64 +public:
    1.65 +	static TScheduleEntry* CreateL(TScheduleEntryInfo2& aInfo);
    1.66 +	};
    1.67 +
    1.68 +
    1.69 +#endif