Poco

class Runnable

File Information

Library: Foundation
Package: Threading
Header: Poco/Runnable.h

Description

The Runnable interface with the run() method must be implemented by classes that provide an entry point for a thread.

Inheritance

Known Derived Classes: Poco::Thread::FunctorRunnable, ThreadTarget, Poco::Net::UDPClient, Poco::RemotingNG::TCP::ServerTransport, Poco::Util::TimerTaskAdapter, Poco::Net::SocketProactor, Poco::RemotingNG::TCP::Listener::EventSubscription, Poco::Util::Timer, Poco::Net::HTTPServerConnection, Poco::Net::HTTPServer, Poco::Net::TCPServer, Poco::OSP::Mail::MailDeliveryServiceImpl, Poco::RemotingNG::TCP::TimerTask, Poco::RemotingNG::TCP::Timer, Poco::RemotingNG::TCP::ServerConnection, Poco::Net::SocketReactor, Poco::Util::TimerTask, Poco::Util::TimerFunc, Poco::Net::TCPServerConnection, Poco::Net::sizeof, Poco::Net::sizeof, Poco::RemotingNG::TCP::Connection, Poco::Data::SQLChannel, Activity, Timer, Task, RunnableAdapter, Poco::Net::TCPServerDispatcher, Poco::OSP::Shell::ShellConnection, ActiveDispatcher, ProcessRunner, ActiveRunnableBase, ActiveRunnable, AsyncChannel, DirectoryWatcher

Member Summary

Member Functions: run

Constructors

Runnable

Runnable();

Destructor

~Runnable virtual

virtual ~Runnable();

Member Functions

run virtual

virtual void run() = 0;

Do whatever the thread needs to do. Must be overridden by subclasses.