I have two QObject
s A
and B
living in separate QThread
s. A
will emit a signal while B
has a matching slot. I want to use connect()
to connect A
's signal to B
's slot.
So the question is, is the connect()
call thread safe? Does it matter in which of the two threads the connect is made?