The base class for asynchronous applications. More...
#include <AsyncApplication.h>
The base class for asynchronous applications.
This is the base class for all asynchronous applications. It is an abstract class and so it must be inherited from to create a class that can be instantiated.
Definition at line 118 of file AsyncApplication.h.
Async::Application::Application | ( | void | ) |
Default constructor.
virtual Async::Application::~Application | ( | void | ) | [virtual] |
Destructor.
static Application& Async::Application::app | ( | void | ) | [static] |
Get the one and only application instance.
Use this static member function to get the one and only instance of the application object. If an application object has not been previously created, the application will crash with a failed assertion.
virtual void Async::Application::exec | ( | void | ) | [pure virtual] |
Execute the application main loop.
When this member function is called the application core will enter the core main loop. It will not exit from this loop until the Async::Application::quit method is called.
Implemented in Async::CppApplication, and Async::QtApplication.
virtual void Async::Application::quit | ( | void | ) | [pure virtual] |
Exit the application main loop.
This function should be called to exit the application core main loop.
Implemented in Async::CppApplication, and Async::QtApplication.
friend class DnsLookup [friend] |
Definition at line 162 of file AsyncApplication.h.
friend class FdWatch [friend] |
Definition at line 160 of file AsyncApplication.h.
friend class Timer [friend] |
Definition at line 161 of file AsyncApplication.h.