summaryrefslogtreecommitdiffstats
path: root/common/messagequeue.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/messagequeue.h')
-rw-r--r--common/messagequeue.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/messagequeue.h b/common/messagequeue.h
index ffc1ff2..3393394 100644
--- a/common/messagequeue.h
+++ b/common/messagequeue.h
@@ -26,6 +26,7 @@ public:
26 MessageQueue(const QString &storageRoot, const QString &name); 26 MessageQueue(const QString &storageRoot, const QString &name);
27 27
28 void enqueue(void const *msg, size_t size); 28 void enqueue(void const *msg, size_t size);
29 void enqueue(const QByteArray &value);
29 //Dequeue a message. This will return a new message everytime called. 30 //Dequeue a message. This will return a new message everytime called.
30 //Call the result handler with a success response to remove the message from the store. 31 //Call the result handler with a success response to remove the message from the store.
31 //TODO track processing progress to avoid processing the same message with the same preprocessor twice? 32 //TODO track processing progress to avoid processing the same message with the same preprocessor twice?
@@ -39,5 +40,4 @@ signals:
39private: 40private:
40 Q_DISABLE_COPY(MessageQueue); 41 Q_DISABLE_COPY(MessageQueue);
41 Akonadi2::Storage mStorage; 42 Akonadi2::Storage mStorage;
42 Akonadi2::Storage::Transaction mTransaction;
43}; 43};