Add note about queue type

This commit is contained in:
Erik Little 2017-10-11 08:28:12 -04:00
parent 0d6c7ece04
commit f9360fc94f
No known key found for this signature in database
GPG Key ID: 62F837E56F4E9320
2 changed files with 3 additions and 1 deletions

View File

@ -1,3 +1,3 @@
github "daltoniam/Starscream" "3.0.2"
github "daltoniam/common-crypto-spm" "1.1.0" github "daltoniam/common-crypto-spm" "1.1.0"
github "daltoniam/zlib-spm" "1.1.0" github "daltoniam/zlib-spm" "1.1.0"
github "daltoniam/Starscream" "3.0.2"

View File

@ -41,6 +41,8 @@ open class SocketIOClient : NSObject, SocketIOClientSpec, SocketEngineClient, So
/// The queue that all interaction with the client should occur on. This is the queue that event handlers are /// The queue that all interaction with the client should occur on. This is the queue that event handlers are
/// called on. /// called on.
///
/// **This should be a serial queue! Concurrent queues are not supported and might cause crashes and races**.
@objc @objc
public var handleQueue = DispatchQueue.main public var handleQueue = DispatchQueue.main