summaryrefslogtreecommitdiff
path: root/src/libcamera/object.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcamera/object.cpp')
-rw-r--r--src/libcamera/object.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/libcamera/object.cpp b/src/libcamera/object.cpp
index fa228483..61787fad 100644
--- a/src/libcamera/object.cpp
+++ b/src/libcamera/object.cpp
@@ -10,6 +10,7 @@
#include <libcamera/signal.h>
#include "log.h"
+#include "message.h"
#include "thread.h"
/**
@@ -32,6 +33,10 @@ namespace libcamera {
* This allows implementing easy message passing between threads by inheriting
* from the Object class.
*
+ * Object slots connected to signals will also run in the context of the
+ * object's thread, regardless of whether the signal is emitted in the same or
+ * in another thread.
+ *
* \sa Message, Signal, Thread
*/
@@ -82,6 +87,16 @@ void Object::postMessage(std::unique_ptr<Message> msg)
*/
void Object::message(Message *msg)
{
+ switch (msg->type()) {
+ case Message::SignalMessage: {
+ SignalMessage *smsg = static_cast<SignalMessage *>(msg);
+ smsg->slot_->invokePack(smsg->pack_);
+ break;
+ }
+
+ default:
+ break;
+ }
}
/**