While I was browsing through the iOS 7 runtime headers, something caught my eye. In the MCNearbyServiceAdvertiser class, part of the Multipeer Connectivity framework, a property called syncQueue
is and multiple methods prefixed with sync
are defined. Some of the methods both exist in a prefixed and non-prefixed version, such as startAdvertisingPeer
and syncStartAdvertisingPeer
.
My question is, what would be the purpose of both this property and these prefixed methods, and how are they combined?
(edit: removed the remark that the queue is serial as pointed out by CouchDeveloper, since we cannot know this)