Hello,
I'm calling a method on a class from a background thread (using a Worker) that must delay a block of code that will mutate the state of the calling object
If I use a second worker to delay this action on another background thread, how can I mutate my object in the new thread avoiding the classic InvalidMutabilityException and then tell the parent thread that the object was changed? Should I use DetachedObjectGraph?
Thank you