kanzi::TaskDispatcher Class Reference

Task dispatcher. More...

#include <kanzi/core.ui/platform/task_dispatcher/common/task_dispatcher.hpp>

Inheritance diagram for kanzi::TaskDispatcher:
kanzi::TaskDispatcherBase

Public Member Functions

 TaskDispatcher ()
 Constructor. More...
 
NativeEventHandle getNativeEventHandle ()
 Returns the native handle that can be used to wait for available tasks. More...
 
virtual void notifyTasksAvailable () KZ_OVERRIDE
 TaskDispatcherBase::notifyTasksAvailable() implementation. More...
 
virtual void notifyTasksConsumed () KZ_OVERRIDE
 TaskDispatcherBase::notifyTasksConsumed() implementation. More...
 
- Public Member Functions inherited from kanzi::TaskDispatcherBase
void submit (Task task)
 Submits a task. More...
 
void executeTasks ()
 Executes the tasks that have been dispatched to the UI thread. More...
 

Additional Inherited Members

- Public Types inherited from kanzi::TaskDispatcherBase
typedef function< void()> Task
 Task is a callback that is dispatched by TaskDispatcher and executed on a specific UI thread. More...
 
- Protected Member Functions inherited from kanzi::TaskDispatcherBase
 TaskDispatcherBase ()
 Constructor. More...
 
virtual ~TaskDispatcherBase ()
 Destructor. More...
 

Detailed Description

Task dispatcher.

You can use TaskDispatcher to schedule execution of callbacks to the UI thread. You can access Kanzi UI objects only on the thread that you create them on. You can wrap code that accesses UI objects with tasks and submit them from any thread to the TaskDispatcher. The UI thread will execute these tasks during its main loop.

Constructor & Destructor Documentation

kanzi::TaskDispatcher::TaskDispatcher ( )
inlineexplicit

Constructor.

Member Function Documentation

NativeEventHandle kanzi::TaskDispatcher::getNativeEventHandle ( )

Returns the native handle that can be used to wait for available tasks.

This is an internal function.

virtual void kanzi::TaskDispatcher::notifyTasksAvailable ( )
virtual
virtual void kanzi::TaskDispatcher::notifyTasksConsumed ( )
virtual

The documentation for this class was generated from the following file: