5 * Copyright (c) 2019 Samsung Electronics Co., Ltd.
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
22 #include <dali/public-api/common/dali-common.h>
25 * The top level DALi namespace
31 * @brief Abstract class for thread functionality. Can be used for worker threads.
33 class DALI_CORE_API Thread
38 * @brief Creates a new thread and make it executable.
43 * @brief Wait for thread termination.
55 * @brief Destructor, virtual as this is used as base class
60 * The routine that the thread will execute once it is started.
62 virtual void Run() = 0;
67 * Helper for the thread calling the entry function.
68 * @param[in] This A pointer to the current thread object
70 static void InternalThreadEntryFunc( Thread& This );
73 Thread( const Thread& );
75 const Thread& operator=( const Thread& );
86 #endif // DALI_THREAD_H