Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
RuntimeThread.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef IMT_BASE_DFF_RUNTIME_OS_RUNTIMETHREAD_H
4#define IMT_BASE_DFF_RUNTIME_OS_RUNTIMETHREAD_H
5
9#include <memory>
10#include <string>
11
12namespace imt {
13namespace base {
14namespace dff {
15namespace runtime {
16namespace os {
17
18// forward declaration of implementation specific thread implementation
19class RuntimeThreadImpl;
20
24class RuntimeThread final {
25
26public:
27
35
40
44 void start();
45
49 void stop();
50
55 void queueEvent(EventData&& eventItem);
56
57 RuntimeThread(RuntimeThread const& source) = delete;
58 RuntimeThread(RuntimeThread&& source) noexcept = delete;
59 RuntimeThread& operator=(RuntimeThread const& source) = delete;
60 RuntimeThread& operator=(RuntimeThread&& source) noexcept = delete;
61
62private:
63
64 std::unique_ptr<RuntimeThreadImpl> m_threadImpl;
65};
66
67} // namespace os
68} // namespace runtime
69} // namespace dff
70} // namespace base
71} // namespace imt
72
73#endif // IMT_BASE_DFF_RUNTIME_OS_RUNTIMETHREAD_H
Interface of an executable which is called by the runtime once an event has to be processed.
Provides a thread instance used to run the logic of an active part of the data flow runtime.
RuntimeThread(RuntimeThread &&source) noexcept=delete
void start()
Starts execution of the thread.
void queueEvent(EventData &&eventItem)
Queues a new event to the runtime thread.
RuntimeThread & operator=(RuntimeThread &&source) noexcept=delete
void stop()
Stops execution of the thread.
RuntimeThread(::imt::base::dff::runtime::ExecutableIfc &executable, std::string const &threadName, ::imt::base::dff::runtime::RuntimePriority priority)
Constructor.
RuntimeThread(RuntimeThread const &source)=delete
RuntimeThread & operator=(RuntimeThread const &source)=delete
RuntimePriority
Runtime executable priorities (=software priorities) The priorities start at 1 with lowest priority,...
This is a application specific file which is used to configure Imt.Base.Core.Math.