- Arkadiy_Kolomiets
- Posts: 9
- Joined:
Dispatcher
Hi there. Is there a dispatcher analog in C++ that allows changing a property from the thread that created this property to avoid access invalidation?
I mean something like:
Invoke or BeginInvoke function like in the WPF
I mean something like:
Invoke or BeginInvoke function like in the WPF
-
sfernandez
Site Admin
- Posts: 3183
- Joined:
Re: Dispatcher
Hello,
Noesis does not handle any threads internally, all multithreading management relies on user code, so you're in charge of knowing which thread created the View and where all the updates should be sent.
We have considered a few times to add a Dispatcher-like queue to the View that could be processed when the user calls Update, but have not been demanded yet.
Noesis does not handle any threads internally, all multithreading management relies on user code, so you're in charge of knowing which thread created the View and where all the updates should be sent.
We have considered a few times to add a Dispatcher-like queue to the View that could be processed when the user calls Update, but have not been demanded yet.