diff -r 000000000000 -r 8466d47a6819 emailservices/emailserver/cmailhandlerplugin/src/fsnotificationhandlertimer.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/emailservices/emailserver/cmailhandlerplugin/src/fsnotificationhandlertimer.cpp Thu Dec 17 08:39:21 2009 +0200 @@ -0,0 +1,84 @@ +/* +* Copyright (c) 2007 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: This file implements class CFSNotificationHandlerTimer. +* +*/ + + +#include "emailtrace.h" +#include "fsnotificationhandlertimer.h" + + + + +// ======== MEMBER FUNCTIONS ======== + +CFSNotificationHandlerTimer::CFSNotificationHandlerTimer( + MFSNotificationHandlerTimerObserver& aObserver ) : + CTimer( EPriorityStandard ), + iObserver( aObserver ) + { + FUNC_LOG; + } + +void CFSNotificationHandlerTimer::ConstructL() + { + FUNC_LOG; + CTimer::ConstructL(); + CActiveScheduler::Add( this ); + } + +CFSNotificationHandlerTimer* CFSNotificationHandlerTimer::NewL( + MFSNotificationHandlerTimerObserver& aObserver ) + { + FUNC_LOG; + CFSNotificationHandlerTimer* self = + CFSNotificationHandlerTimer::NewLC( aObserver ); + CleanupStack::Pop( self ); + return self; + } + +CFSNotificationHandlerTimer* CFSNotificationHandlerTimer::NewLC( + MFSNotificationHandlerTimerObserver& aObserver ) + { + FUNC_LOG; + CFSNotificationHandlerTimer* self = + new( ELeave ) CFSNotificationHandlerTimer( aObserver ); + CleanupStack::PushL( self ); + self->ConstructL(); + return self; + } + + +CFSNotificationHandlerTimer::~CFSNotificationHandlerTimer() + { + FUNC_LOG; + Cancel(); + } + +void CFSNotificationHandlerTimer::DoCancel() + { + FUNC_LOG; + // Cancel Base class + CTimer::DoCancel(); + } + +void CFSNotificationHandlerTimer::RunL() + { + FUNC_LOG; + iObserver.TimerCallBackL( iStatus.Int() ); + } + +// End of file +