MeVisLab Toolbox Reference
|
#include <mlBackgroundTaskMessages.h>
Public Member Functions | |
BackgroundTaskMLGetTileBaseMessage (BackgroundRequestId tileId, Module *module) | |
~BackgroundTaskMLGetTileBaseMessage () override | |
void | executeSynchronous () override |
execute message when it is delivered and the task runs synchronous, the default implementation just calls the execute() method (reimplement in subclasses). | |
bool | finishedProcessing () override |
tells if the message needs further processing or if it may be deleted if true is returned, the message is placed to another processing queue and finishedProcessing() is called in regular intervals | |
void | taskWillBeDestroyed () override |
this needs to be implemented if the message uses finishedProcessing() and the task is finished while a message is still on it's way | |
virtual void | sendFinishedRequest ()=0 |
virtual void | sendFailedRequest ()=0 |
virtual void | sendProgress ()=0 |
Public Member Functions inherited from ml::BackgroundTaskMessage | |
BackgroundTaskMessage () | |
virtual | ~BackgroundTaskMessage () |
void | setSender (BackgroundTask *task) |
set who sends the message (default is NULL and means that the message's sender is not a BackgroundTask) | |
BackgroundTask * | sender () |
returns the task from which the message originates | |
void | setReceiver (BackgroundTaskMessageReceiver *receiverArg) |
set who receives the message (default is NULL) | |
BackgroundTaskMessageReceiver * | receiver () |
returns the object which receives the message (default is NULL) | |
virtual void | execute ()=0 |
execute message when it is delivered (reimplement in subclasses) | |
Static Public Member Functions | |
static void | tileRequestFinishedCB (void *data, TileRequest *request) |
Protected Attributes | |
GetTileJobBase * | _request |
Module * | _module |
BackgroundRequestId | _tileId |
bool | _resultWasSent |
Definition at line 36 of file mlBackgroundTaskMessages.h.
|
inline |
Definition at line 38 of file mlBackgroundTaskMessages.h.
|
override |
|
overridevirtual |
execute message when it is delivered and the task runs synchronous, the default implementation just calls the execute() method (reimplement in subclasses).
Reimplemented from ml::BackgroundTaskMessage.
|
overridevirtual |
tells if the message needs further processing or if it may be deleted if true is returned, the message is placed to another processing queue and finishedProcessing() is called in regular intervals
Reimplemented from ml::BackgroundTaskMessage.
Implemented in ml::BackgroundTaskMLGetTileMessage, and ml::BackgroundTaskMLProcessAllPagesMessage.
Implemented in ml::BackgroundTaskMLGetTileMessage, and ml::BackgroundTaskMLProcessAllPagesMessage.
Implemented in ml::BackgroundTaskMLGetTileMessage, and ml::BackgroundTaskMLProcessAllPagesMessage.
|
overridevirtual |
this needs to be implemented if the message uses finishedProcessing() and the task is finished while a message is still on it's way
Reimplemented from ml::BackgroundTaskMessage.
|
static |
|
protected |
Definition at line 60 of file mlBackgroundTaskMessages.h.
|
protected |
Definition at line 59 of file mlBackgroundTaskMessages.h.
|
protected |
Definition at line 62 of file mlBackgroundTaskMessages.h.
|
protected |
Definition at line 61 of file mlBackgroundTaskMessages.h.