If I have one NSManagedObjectContext and two children of it, one for updating in background from web service (A) and other for operations in the UI thread (B) the question is: How the NSManagedObjectContext B is notified about changes in the parent managed object context once the background context (A) has been updated with new information and save it to the parent context?
Thanks