From d9559e7c59caa16e81cfe190a73b2a4121d5ab5c Mon Sep 17 00:00:00 2001 From: Erik Date: Sat, 27 May 2017 12:18:10 -0400 Subject: [PATCH] Add note about queue safety --- Source/SocketIOClient.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/SocketIOClient.swift b/Source/SocketIOClient.swift index a0c92aa..696acee 100644 --- a/Source/SocketIOClient.swift +++ b/Source/SocketIOClient.swift @@ -27,6 +27,8 @@ import Foundation /// The main class for SocketIOClientSwift. /// +/// **NOTE**: The client is not thread/queue safe, all interaction with the socket should be done on the `handleQueue` +/// /// Represents a socket.io-client. Most interaction with socket.io will be through this class. open class SocketIOClient : NSObject, SocketIOClientSpec, SocketEngineClient, SocketParsable { // MARK: Properties