ffead.server.doc
Main Page
Classes
Files
File List
PoolThread.h
1
/*
2
Copyright 2009-2012, Sumeet Chhetri
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
6
You may obtain a copy of the License at
7
8
http://www.apache.org/licenses/LICENSE-2.0
9
10
Unless required by applicable law or agreed to in writing, software
11
distributed under the License is distributed on an "AS IS" BASIS,
12
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
See the License for the specific language governing permissions and
14
limitations under the License.
15
*/
16
/*
17
* PoolThread.h
18
*
19
* Created on: Mar 23, 2010
20
* Author: sumeet
21
*/
22
23
#ifndef POOLTHREAD_H_
24
#define POOLTHREAD_H_
25
#include "Task.h"
26
#include "Thread.h"
27
#include "Mutex.h"
28
#include "TimeUnit.h"
29
#include "Logger.h"
30
31
class
PoolThread
{
32
bool
console;
33
static
void
* run(
void
*arg);
34
PoolThread
(
bool
console);
35
PoolThread
();
36
virtual
~
PoolThread
();
37
Thread
*mthread;
38
bool
idle;
39
Task
*task;
40
Logger
logger;
41
Mutex
*m_mutex;
42
void
release();
43
friend
class
ThreadPool
;
44
Task
* getTask();
45
bool
runFlag, complete, thrdStarted;
46
public
:
47
bool
isIdle();
48
void
checkout(
Task
*task);
49
void
execute();
50
};
51
52
#endif
/* POOLTHREAD_H_ */
include
PoolThread.h
Generated on Sun Mar 10 2013 11:01:56 for ffead.server.doc by
1.8.3.1