Poco

class Runnable

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::DNSSD::Avahi::AvahiResponderImpl, Poco::DNSSD::Bonjour::EventLoop, ActiveRunnableBase, ActiveDispatcher, ActiveRunnable, Activity, AsyncChannel, RunnableAdapter, Task, ThreadTarget, Timer, Poco::Net::HTTPServer, Poco::Net::HTTPServerConnection, Poco::Net::SocketReactor, Poco::Net::TCPServerConnection, Poco::Net::TCPServer, Poco::Net::TCPServerDispatcher, Poco::OSP::Shell::ShellConnection, Poco::Remoting::Binary::BinaryServerConnection, Poco::Util::Timer, Poco::Util::TimerTask, Poco::Util::TimerTaskAdapter

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.