DCTCoreData icon indicating copy to clipboard operation
DCTCoreData copied to clipboard

asynchronous mod

Open frankodwyer opened this issue 14 years ago • 0 comments

Hi,

I've seen some edge case errors which (I think) are to do with not creating contexts in the thread where they will be used. I noticed the dct_ async stuff uses the same pattern, so have made the same change there, if you want to pull the change.

Cheers, Frank

(See Apple docs here: https://developer.apple.com/library/ios/#documentation/cocoa/conceptual/CoreData/Articles/cdConcurrency.htm "You must create the managed context on the thread on which is will be used. If you use NSOperation, note that its init method is invoked on the same thread as the caller. You must not, therefore, create a managed object context for the queue in the queue’s init method, otherwise it is associated with the caller’s thread. Instead, you should create the context in main (for a serial queue) or start (for a concurrent queue).")

frankodwyer avatar Mar 01 '12 20:03 frankodwyer