Created
February 12, 2012 13:11
-
-
Save kierankelleher/1808397 to your computer and use it in GitHub Desktop.
EOEditingContext locking pattern
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ec.lock(); | |
| try { | |
| // work with ec here | |
| } finally { | |
| ec.unlock(); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment