2b11db3c26c49aaa0e75209474e18c5fbb5ed48a
[platform/framework/native/appfw.git] / src / base / runtime / FBaseRt_WorkerThreadImpl.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 /**
19  * @file        FBaseRt_WorkerThreadImpl.h
20  * @brief       This is the header file for the _WorkerThreadImpl class.
21  *
22  * This file contains the declarations of _WorkerThreadImpl.
23  */
24
25
26 #ifndef _FRT_THREAD_INTERNAL_WORKER_THREAD_IMPL_H_
27 #define _FRT_THREAD_INTERNAL_WORKER_THREAD_IMPL_H_
28
29 #include "FBaseRt_ThreadImpl.h"
30
31 namespace Tizen { namespace Base { namespace Runtime
32 {
33
34 class _WorkerThreadImpl
35         : public _ThreadImpl
36 {
37 public:
38         _WorkerThreadImpl(Thread& thread, IRunnable* pIRunnable, const String& name, long stackSize, ThreadPriority priority);
39
40         virtual ~_WorkerThreadImpl(void);
41
42         virtual Tizen::Base::Object* Run(void);
43
44 private:
45         _WorkerThreadImpl(const _WorkerThreadImpl& rhs);
46         _WorkerThreadImpl& operator= (const _WorkerThreadImpl& rhs);
47
48 private:
49         IRunnable* __pIRunnable;
50 };
51
52
53 } } } // Tizen::Base::Runtime
54
55 #endif  // _FRT_THREAD_INTERNAL_WORKER_THREAD_H_