OSSIM - Open Source Software Image Map
Version 1.9.0 (20180803)
|
The callback allows one to attach and listen for certain things. More...
#include <ossimJobQueue.h>
Public Member Functions | |
Callback () | |
virtual void | adding (std::shared_ptr< ossimJobQueue >, std::shared_ptr< ossimJob >) |
Called just before a job is added. More... | |
virtual void | added (std::shared_ptr< ossimJobQueue >, std::shared_ptr< ossimJob >) |
Called after a job is added to the queue. More... | |
virtual void | removed (std::shared_ptr< ossimJobQueue >, std::shared_ptr< ossimJob >) |
Called after a job is removed from the queue. More... | |
The callback allows one to attach and listen for certain things.
In the ossimJobQueue it will notify just before adding a job, after adding a job and if a job is removed.
Definition at line 92 of file ossimJobQueue.h.
|
inline |
Definition at line 95 of file ossimJobQueue.h.
|
inlinevirtual |
Called after a job is added to the queue.
q | Is a shared_ptr to 'this' job queue |
job | Is a shared ptr to the job we are added |
Definition at line 111 of file ossimJobQueue.h.
|
inlinevirtual |
Called just before a job is added.
q | Is a shared_ptr to 'this' job queue |
job | Is a shared ptr to the job we are adding |
Definition at line 103 of file ossimJobQueue.h.
|
inlinevirtual |
Called after a job is removed from the queue.
q | Is a shared_ptr to 'this' job queue |
job | Is a shared ptr to the job we have removed |
Definition at line 120 of file ossimJobQueue.h.