Library: Foundation
Package: Threading
Header: Poco/Runnable.h
The Runnable interface with the run() method must be implemented by classes that provide an entry point for a thread.
Known Derived Classes: Activity, ActiveDispatcher, ActiveRunnableBase, ActiveRunnable, AsyncChannel, DirectoryWatcher, Task, RunnableAdapter, ThreadTarget, Timer, Poco::Net::SocketReactor, Poco::Util::TimerTask, Poco::Net::HTTPServer, Poco::Net::HTTPServerConnection, Poco::Net::TCPServerDispatcher, Poco::Net::TCPServerConnection, Poco::Net::TCPServer, Poco::Util::Timer, Poco::Util::TimerTaskAdapter
Member Functions: run
Runnable();
virtual ~Runnable();
virtual void run() = 0;
Do whatever the thread needs to do. Must be overridden by subclasses.