Function bitcoin_qt::gui_util::object_invoke
source · pub fn object_invoke<Fn>(
object: *mut u32,
function: Fn,
connection: Option<u32>
)
Expand description
| Queue a function to run in an object’s | event loop. This can be replaced by a | call to the QMetaObject::invokeMethod | functor overload after Qt 5.10, but | for now use a QObject::connect for compatibility | with older Qt versions, based on https://stackoverflow.com/questions/21646467/how-to-execute-a-functor-or-a-lambda-in-a-given-thread-in-qt-gcd-style |