ThreadedExecutor Class Reference
#include <ThreadedExecutor.h>
Inheritance diagram for ThreadedExecutor:
Public Member Functions | |
ThreadedExecutor () | |
Create a new ThreadedExecutor. | |
virtual | ~ThreadedExecutor () |
Destroy a ThreadedExecutor. | |
virtual void | interrupt () |
virtual void | execute (const Task &) |
virtual void | cancel () |
virtual bool | isCanceled () |
virtual void | wait () |
virtual bool | wait (unsigned long timeout) |
Detailed Description
- Author:
- Eric Crahen <http://www.code-foo.com>
- Date:
- <2003-07-16T22:39:13-0400>
- Version:
- 2.3.0
- cancel()ing a ThreadedExecutor will cause it to stop accepting new tasks.
- interrupt()ing a ThreadedExecutor will cause the any thread running a task which was submitted prior to the invocation of this function to be interrupted during the execution of that task.
- wait()ing on a ThreadedExecutor will block the calling thread until all tasks that were submitted prior to the invocation of this function have completed.
- See also:
- Executor.
Member Function Documentation
|
Implements Cancelable. |
|
Submit a task to this Executor. This will not block the current thread for very long. A new thread will be created and the task will be run() within the context of that new thread.
Implements Executor. |
|
Interrupting a ThreadedExecutor will cause an interrupt() to be sent to every Task that has been submitted at the time this function is called. Tasks that are submitted after this function is called will not be interrupt()ed; unless this function is invoked again(). Implements Executor. |
|
Implements Cancelable. |
|
Operates the same as ThreadedExecutor::wait() but with a timeout.
Implements Waitable. |
|
Waiting on a ThreadedExecutor will block the current thread until all tasks submitted to the Executor up until the time this function was called have completed. Tasks submitted after this function is called will not delay a thread that was already waiting on the Executor any longer. In order to wait for those tasks to complete as well, another wait() would be needed.
Implements Waitable. |
The documentation for this class was generated from the following file:
- ThreadedExecutor.h