I am just in the middle of implementing a syncing solution using the Obj-C V2 SDK.
I have a couple of concurrent threads. One for checking for (and downloading) any remote changes, and another for uploading local changes.
This could potentially involve some concurrent usage of the V2 SDK. For example simultaneous listFolder calls, or simultanoues download and upload calls. So I was wondering whether this was an issue from a thread safety perspective. I know it uses NSUrlSessions behnid the scenes, but not sure how safe such concurrent operations would be....