aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/poco/Util/src/TimerTask.cpp
blob: dac3794d1ce83e7bb6746b4ca3aed77ad92e4acd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//
// TimerTask.cpp
//
// Library: Util
// Package: Timer
// Module:  TimerTask
//
// Copyright (c) 2009, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier:	BSL-1.0
//


#include "Poco/Util/TimerTask.h"


namespace Poco {
namespace Util {


TimerTask::TimerTask():
	_lastExecution(0),
	_isCancelled(false)
{
}


TimerTask::~TimerTask()
{
}


void TimerTask::cancel()
{
	_isCancelled = true;
}


} } // namespace Poco::Util