13 #ifndef ML_BACKGROUND_TASK_MESSAGE_QUEUE_H
14 #define ML_BACKGROUND_TASK_MESSAGE_QUEUE_H
19 #include <ThirdPartyWarningsDisable.h>
21 #include <boost/thread/mutex.hpp>
22 #include <boost/thread/condition.hpp>
23 #include <ThirdPartyWarningsRestore.h>
29 class BackgroundTaskMessage;
30 class BackgroundTaskMessageReceiver;
83 std::deque<BackgroundTaskMessage*> _queue;
87 boost::condition _messageAvailable;
#define MLBACKGROUNDTASKS_EXPORT
void removeMessagesForReceiver(BackgroundTaskMessageReceiver *receiver)
Removes all messages for the given receiver.
BackgroundTaskMessageQueue()
BackgroundTaskMessage * nextMessage()
Returns the next message without blocking and returns NULL if no message was available.
void cancelAndNotify()
Sets that the queue is canceled and notifies it if it is waiting for new messages.
~BackgroundTaskMessageQueue()
BackgroundTaskMessage * nextMessage(int &availableMessages)
Returns the next message and the number of available messages, including the returned message,...
bool isCanceled() const
Returns whether the queue has been canceled.
BackgroundTaskMessage * waitForMessage()
Waits for the next message.
BackgroundTaskMessage * nextMessageNoLock()
Returns the next message without locking the queue.
void addMessage(BackgroundTaskMessage *message)
Puts the message in the queue and passes ownership to the queue Do not delete the message!...
void cancel()
Sets that the queue is canceled.
The background task receiver is a light-weight base class that can be inherited (e....
The base class of all background messages.
#define ML_DISALLOW_COPY_AND_ASSIGN(className)
Defines basic macros.