You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Realm
I found myself needing thread safe copies of RLMRealm objects and I achieved this as follows (it's an ObjC+Swift project):
try!RLMRealm(configuration: realm.configuration)
Is this safe?
Would it be possible to add a 'threadSafeCopy' function to RLMRealm so that it's obvious how to get a thread safe copy? And maybe make it not throw and return a non-optional..?