19template<
typename... Args>
34 template<
typename T,
typename R,
typename... FuncArgs,
typename... Args,
35 std::enable_if_t<std::is_base_of<Object, T>::value> * =
nullptr>
39 T *obj =
static_cast<T *
>(
this);
40 auto *method =
new BoundMethodMember<T, R, FuncArgs...>(obj,
this, func, type);
41 return method->activate(args...,
true);
53 friend class SignalBase;
56 void notifyThreadMove();
58 void connect(SignalBase *signal);
59 void disconnect(SignalBase *signal);
62 std::vector<Object *> children_;
65 std::list<SignalBase *> signals_;
66 unsigned int pendingMessages_;
Method bind and invocation.
A message that can be posted to a Thread.
Definition: message.h:24
Base object to support automatic signal disconnection.
Definition: object.h:25
Object(Object *parent=nullptr)
Construct an Object instance.
Definition: object.cpp:68
R invokeMethod(R(T::*func)(FuncArgs...), ConnectionType type, Args &&... args)
Invoke a method asynchronously on an Object instance.
Definition: object.h:36
Object * parent() const
Retrieve the object's parent.
Definition: object.h:47
virtual void message(Message *msg)
Message handler for the object.
Definition: object.cpp:188
void deleteLater()
Schedule deletion of the instance in the thread it belongs to.
Definition: object.cpp:147
void moveToThread(Thread *thread)
Move the object and all its children to a different thread.
Definition: object.cpp:264
Thread * thread() const
Retrieve the thread the object is bound to.
Definition: object.h:44
virtual ~Object()
Destroy an Object instance.
Definition: object.cpp:88
void postMessage(std::unique_ptr< Message > msg)
Post a message to the object's thread.
Definition: object.cpp:171
A thread of execution.
Definition: thread.h:29
Top-level libcamera namespace.
Definition: backtrace.h:17
ConnectionType
Connection type for asynchronous communication.
Definition: bound_method.h:19