bump version and docs
This commit is contained in:
		
							parent
							
								
									558ea65aa1
								
							
						
					
					
						commit
						5dcfe18748
					
				@ -1,7 +1,7 @@
 | 
				
			|||||||
Pod::Spec.new do |s|
 | 
					Pod::Spec.new do |s|
 | 
				
			||||||
  s.name         = "Socket.IO-Client-Swift"
 | 
					  s.name         = "Socket.IO-Client-Swift"
 | 
				
			||||||
  s.module_name  = "SocketIO"
 | 
					  s.module_name  = "SocketIO"
 | 
				
			||||||
  s.version      = "15.0.0"
 | 
					  s.version      = "15.1.0"
 | 
				
			||||||
  s.summary      = "Socket.IO-client for iOS and OS X"
 | 
					  s.summary      = "Socket.IO-client for iOS and OS X"
 | 
				
			||||||
  s.description  = <<-DESC
 | 
					  s.description  = <<-DESC
 | 
				
			||||||
                   Socket.IO-client for iOS and OS X.
 | 
					                   Socket.IO-client for iOS and OS X.
 | 
				
			||||||
@ -18,7 +18,7 @@ Pod::Spec.new do |s|
 | 
				
			|||||||
  s.requires_arc = true
 | 
					  s.requires_arc = true
 | 
				
			||||||
  s.source = {
 | 
					  s.source = {
 | 
				
			||||||
    :git => "https://github.com/socketio/socket.io-client-swift.git",
 | 
					    :git => "https://github.com/socketio/socket.io-client-swift.git",
 | 
				
			||||||
    :tag => 'v15.0.0',
 | 
					    :tag => 'v15.1.0',
 | 
				
			||||||
    :submodules => true
 | 
					    :submodules => true
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -115,6 +115,7 @@ public final class OnAckCallback : NSObject {
 | 
				
			|||||||
        self.binary = binary
 | 
					        self.binary = binary
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    /// :nodoc:
 | 
				
			||||||
    deinit {
 | 
					    deinit {
 | 
				
			||||||
        DefaultSocketLogger.Logger.log("OnAckCallback for \(ackNumber) being released", type: "OnAckCallback")
 | 
					        DefaultSocketLogger.Logger.log("OnAckCallback for \(ackNumber) being released", type: "OnAckCallback")
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
				
			|||||||
@ -107,6 +107,7 @@ open class SocketIOClient : NSObject, SocketIOClientSpec {
 | 
				
			|||||||
        super.init()
 | 
					        super.init()
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    /// :nodoc:
 | 
				
			||||||
    deinit {
 | 
					    deinit {
 | 
				
			||||||
        DefaultSocketLogger.Logger.log("Client is being released", type: logType)
 | 
					        DefaultSocketLogger.Logger.log("Client is being released", type: logType)
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
				
			|||||||
@ -113,7 +113,7 @@ open class SocketEngine : NSObject, URLSessionDelegate, SocketEnginePollable, So
 | 
				
			|||||||
    /// If `true`, then the engine is currently in WebSockets mode.
 | 
					    /// If `true`, then the engine is currently in WebSockets mode.
 | 
				
			||||||
    @available(*, deprecated, message: "No longer needed, if we're not polling, then we must be doing websockets")
 | 
					    @available(*, deprecated, message: "No longer needed, if we're not polling, then we must be doing websockets")
 | 
				
			||||||
    public private(set) var websocket = false
 | 
					    public private(set) var websocket = false
 | 
				
			||||||
    
 | 
					
 | 
				
			||||||
    /// When `true`, the WebSocket `stream` will be configured with the enableSOCKSProxy `true`.
 | 
					    /// When `true`, the WebSocket `stream` will be configured with the enableSOCKSProxy `true`.
 | 
				
			||||||
    public private(set) var enableSOCKSProxy = false
 | 
					    public private(set) var enableSOCKSProxy = false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -170,6 +170,7 @@ open class SocketEngine : NSObject, URLSessionDelegate, SocketEnginePollable, So
 | 
				
			|||||||
        self.init(client: client, url: url, config: options?.toSocketConfiguration() ?? [])
 | 
					        self.init(client: client, url: url, config: options?.toSocketConfiguration() ?? [])
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    /// :nodoc:
 | 
				
			||||||
    deinit {
 | 
					    deinit {
 | 
				
			||||||
        DefaultSocketLogger.Logger.log("Engine is being released", type: SocketEngine.logType)
 | 
					        DefaultSocketLogger.Logger.log("Engine is being released", type: SocketEngine.logType)
 | 
				
			||||||
        closed = true
 | 
					        closed = true
 | 
				
			||||||
 | 
				
			|||||||
@ -158,6 +158,7 @@ open class SocketManager : NSObject, SocketManagerSpec, SocketParsable, SocketDa
 | 
				
			|||||||
        self.init(socketURL: socketURL, config: config?.toSocketConfiguration() ?? [])
 | 
					        self.init(socketURL: socketURL, config: config?.toSocketConfiguration() ?? [])
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    /// :nodoc:
 | 
				
			||||||
    deinit {
 | 
					    deinit {
 | 
				
			||||||
        DefaultSocketLogger.Logger.log("Manager is being released", type: SocketManager.logType)
 | 
					        DefaultSocketLogger.Logger.log("Manager is being released", type: SocketManager.logType)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -22,7 +22,7 @@
 | 
				
			|||||||
        <a class="header-link" href="index.html">
 | 
					        <a class="header-link" href="index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -283,7 +283,7 @@ and a <code>connect</code> event fired.</p>
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="index.html">
 | 
					        <a class="header-link" href="index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -525,7 +525,7 @@ or call one of the <code>disconnectSocket</code> methods on this class.</p>
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="../index.html">
 | 
					        <a class="header-link" href="../index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -205,37 +205,6 @@ Example:</p>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <section class="section">
 | 
					        <section class="section">
 | 
				
			||||||
          <div class="section-content">
 | 
					          <div class="section-content">
 | 
				
			||||||
            <div class="task-group">
 | 
					 | 
				
			||||||
              <ul class="item-container">
 | 
					 | 
				
			||||||
                <li class="item">
 | 
					 | 
				
			||||||
                  <div>
 | 
					 | 
				
			||||||
                    <code>
 | 
					 | 
				
			||||||
                    <a name="/c:@M@SocketIO@objc(cs)OnAckCallback(im)dealloc"></a>
 | 
					 | 
				
			||||||
                    <a name="//apple_ref/swift/Method/deinit" class="dashAnchor"></a>
 | 
					 | 
				
			||||||
                    <a class="token" href="#/c:@M@SocketIO@objc(cs)OnAckCallback(im)dealloc">deinit</a>
 | 
					 | 
				
			||||||
                    </code>
 | 
					 | 
				
			||||||
                  </div>
 | 
					 | 
				
			||||||
                  <div class="height-container">
 | 
					 | 
				
			||||||
                    <div class="pointer-container"></div>
 | 
					 | 
				
			||||||
                    <section class="section">
 | 
					 | 
				
			||||||
                      <div class="pointer"></div>
 | 
					 | 
				
			||||||
                      <div class="abstract">
 | 
					 | 
				
			||||||
                        <p>Undocumented</p>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                      </div>
 | 
					 | 
				
			||||||
                      <div class="declaration">
 | 
					 | 
				
			||||||
                        <h4>Declaration</h4>
 | 
					 | 
				
			||||||
                        <div class="language">
 | 
					 | 
				
			||||||
                          <p class="aside-title">Swift</p>
 | 
					 | 
				
			||||||
                          <pre class="highlight swift"><code><span class="kd">deinit</span></code></pre>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                        </div>
 | 
					 | 
				
			||||||
                      </div>
 | 
					 | 
				
			||||||
                    </section>
 | 
					 | 
				
			||||||
                  </div>
 | 
					 | 
				
			||||||
                </li>
 | 
					 | 
				
			||||||
              </ul>
 | 
					 | 
				
			||||||
            </div>
 | 
					 | 
				
			||||||
            <div class="task-group">
 | 
					            <div class="task-group">
 | 
				
			||||||
              <div class="task-name-container">
 | 
					              <div class="task-name-container">
 | 
				
			||||||
                <a name="/Methods"></a>
 | 
					                <a name="/Methods"></a>
 | 
				
			||||||
@ -313,7 +282,7 @@ Example:</p>
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="../index.html">
 | 
					        <a class="header-link" href="../index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -428,7 +428,7 @@ validation</p>
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="../index.html">
 | 
					        <a class="header-link" href="../index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -459,7 +459,7 @@ will be emitted. The structure of the error data is <code>[ackNum, items, theErr
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="../index.html">
 | 
					        <a class="header-link" href="../index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -299,7 +299,7 @@
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="../index.html">
 | 
					        <a class="header-link" href="../index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -839,6 +839,35 @@ disconnect us.</p>
 | 
				
			|||||||
                          <pre class="highlight swift"><code><span class="kd">@available(*, deprecated, message: "No longer needed, if we're not polling, then we must be doing websockets")</span>
 | 
					                          <pre class="highlight swift"><code><span class="kd">@available(*, deprecated, message: "No longer needed, if we're not polling, then we must be doing websockets")</span>
 | 
				
			||||||
<span class="kd">public</span> <span class="kd">private(set)</span> <span class="k">var</span> <span class="nv">websocket</span><span class="p">:</span> <span class="nf">Bool</span> <span class="p">{</span>
 | 
					<span class="kd">public</span> <span class="kd">private(set)</span> <span class="k">var</span> <span class="nv">websocket</span><span class="p">:</span> <span class="nf">Bool</span> <span class="p">{</span>
 | 
				
			||||||
  <span class="k">get</span>
 | 
					  <span class="k">get</span>
 | 
				
			||||||
 | 
					  <span class="p">}</span></code></pre>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                        </div>
 | 
				
			||||||
 | 
					                      </div>
 | 
				
			||||||
 | 
					                    </section>
 | 
				
			||||||
 | 
					                  </div>
 | 
				
			||||||
 | 
					                </li>
 | 
				
			||||||
 | 
					                <li class="item">
 | 
				
			||||||
 | 
					                  <div>
 | 
				
			||||||
 | 
					                    <code>
 | 
				
			||||||
 | 
					                    <a name="/s:8SocketIO0A6EngineC16enableSOCKSProxySbvp"></a>
 | 
				
			||||||
 | 
					                    <a name="//apple_ref/swift/Property/enableSOCKSProxy" class="dashAnchor"></a>
 | 
				
			||||||
 | 
					                    <a class="token" href="#/s:8SocketIO0A6EngineC16enableSOCKSProxySbvp">enableSOCKSProxy</a>
 | 
				
			||||||
 | 
					                    </code>
 | 
				
			||||||
 | 
					                  </div>
 | 
				
			||||||
 | 
					                  <div class="height-container">
 | 
				
			||||||
 | 
					                    <div class="pointer-container"></div>
 | 
				
			||||||
 | 
					                    <section class="section">
 | 
				
			||||||
 | 
					                      <div class="pointer"></div>
 | 
				
			||||||
 | 
					                      <div class="abstract">
 | 
				
			||||||
 | 
					                        <p>When <code>true</code>, the WebSocket <code>stream</code> will be configured with the enableSOCKSProxy <code>true</code>.</p>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                      </div>
 | 
				
			||||||
 | 
					                      <div class="declaration">
 | 
				
			||||||
 | 
					                        <h4>Declaration</h4>
 | 
				
			||||||
 | 
					                        <div class="language">
 | 
				
			||||||
 | 
					                          <p class="aside-title">Swift</p>
 | 
				
			||||||
 | 
					                          <pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">private(set)</span> <span class="k">var</span> <span class="nv">enableSOCKSProxy</span><span class="p">:</span> <span class="nf">Bool</span> <span class="p">{</span>
 | 
				
			||||||
 | 
					  <span class="k">get</span>
 | 
				
			||||||
  <span class="p">}</span></code></pre>
 | 
					  <span class="p">}</span></code></pre>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                        </div>
 | 
					                        </div>
 | 
				
			||||||
@ -1053,33 +1082,6 @@ disconnect us.</p>
 | 
				
			|||||||
                    </section>
 | 
					                    </section>
 | 
				
			||||||
                  </div>
 | 
					                  </div>
 | 
				
			||||||
                </li>
 | 
					                </li>
 | 
				
			||||||
                <li class="item">
 | 
					 | 
				
			||||||
                  <div>
 | 
					 | 
				
			||||||
                    <code>
 | 
					 | 
				
			||||||
                    <a name="/c:@M@SocketIO@objc(cs)SocketEngine(im)dealloc"></a>
 | 
					 | 
				
			||||||
                    <a name="//apple_ref/swift/Method/deinit" class="dashAnchor"></a>
 | 
					 | 
				
			||||||
                    <a class="token" href="#/c:@M@SocketIO@objc(cs)SocketEngine(im)dealloc">deinit</a>
 | 
					 | 
				
			||||||
                    </code>
 | 
					 | 
				
			||||||
                  </div>
 | 
					 | 
				
			||||||
                  <div class="height-container">
 | 
					 | 
				
			||||||
                    <div class="pointer-container"></div>
 | 
					 | 
				
			||||||
                    <section class="section">
 | 
					 | 
				
			||||||
                      <div class="pointer"></div>
 | 
					 | 
				
			||||||
                      <div class="abstract">
 | 
					 | 
				
			||||||
                        <p>Undocumented</p>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                      </div>
 | 
					 | 
				
			||||||
                      <div class="declaration">
 | 
					 | 
				
			||||||
                        <h4>Declaration</h4>
 | 
					 | 
				
			||||||
                        <div class="language">
 | 
					 | 
				
			||||||
                          <p class="aside-title">Swift</p>
 | 
					 | 
				
			||||||
                          <pre class="highlight swift"><code><span class="kd">deinit</span></code></pre>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                        </div>
 | 
					 | 
				
			||||||
                      </div>
 | 
					 | 
				
			||||||
                    </section>
 | 
					 | 
				
			||||||
                  </div>
 | 
					 | 
				
			||||||
                </li>
 | 
					 | 
				
			||||||
              </ul>
 | 
					              </ul>
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
            <div class="task-group">
 | 
					            <div class="task-group">
 | 
				
			||||||
@ -1500,7 +1502,7 @@ the engine is attempting to upgrade to WebSocket it does not do any POSTing.</p>
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="../index.html">
 | 
					        <a class="header-link" href="../index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -486,33 +486,6 @@
 | 
				
			|||||||
                    </section>
 | 
					                    </section>
 | 
				
			||||||
                  </div>
 | 
					                  </div>
 | 
				
			||||||
                </li>
 | 
					                </li>
 | 
				
			||||||
                <li class="item">
 | 
					 | 
				
			||||||
                  <div>
 | 
					 | 
				
			||||||
                    <code>
 | 
					 | 
				
			||||||
                    <a name="/c:@M@SocketIO@objc(cs)SocketIOClient(im)dealloc"></a>
 | 
					 | 
				
			||||||
                    <a name="//apple_ref/swift/Method/deinit" class="dashAnchor"></a>
 | 
					 | 
				
			||||||
                    <a class="token" href="#/c:@M@SocketIO@objc(cs)SocketIOClient(im)dealloc">deinit</a>
 | 
					 | 
				
			||||||
                    </code>
 | 
					 | 
				
			||||||
                  </div>
 | 
					 | 
				
			||||||
                  <div class="height-container">
 | 
					 | 
				
			||||||
                    <div class="pointer-container"></div>
 | 
					 | 
				
			||||||
                    <section class="section">
 | 
					 | 
				
			||||||
                      <div class="pointer"></div>
 | 
					 | 
				
			||||||
                      <div class="abstract">
 | 
					 | 
				
			||||||
                        <p>Undocumented</p>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                      </div>
 | 
					 | 
				
			||||||
                      <div class="declaration">
 | 
					 | 
				
			||||||
                        <h4>Declaration</h4>
 | 
					 | 
				
			||||||
                        <div class="language">
 | 
					 | 
				
			||||||
                          <p class="aside-title">Swift</p>
 | 
					 | 
				
			||||||
                          <pre class="highlight swift"><code><span class="kd">deinit</span></code></pre>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                        </div>
 | 
					 | 
				
			||||||
                      </div>
 | 
					 | 
				
			||||||
                    </section>
 | 
					 | 
				
			||||||
                  </div>
 | 
					 | 
				
			||||||
                </li>
 | 
					 | 
				
			||||||
              </ul>
 | 
					              </ul>
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
            <div class="task-group">
 | 
					            <div class="task-group">
 | 
				
			||||||
@ -1991,7 +1964,7 @@ Called when the manager detects a broken connection, or when a manual reconnect
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="../index.html">
 | 
					        <a class="header-link" href="../index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -719,33 +719,6 @@ If using Swift it’s recommended to use <code>init(socketURL: NSURL, option
 | 
				
			|||||||
                    </section>
 | 
					                    </section>
 | 
				
			||||||
                  </div>
 | 
					                  </div>
 | 
				
			||||||
                </li>
 | 
					                </li>
 | 
				
			||||||
                <li class="item">
 | 
					 | 
				
			||||||
                  <div>
 | 
					 | 
				
			||||||
                    <code>
 | 
					 | 
				
			||||||
                    <a name="/c:@M@SocketIO@objc(cs)SocketManager(im)dealloc"></a>
 | 
					 | 
				
			||||||
                    <a name="//apple_ref/swift/Method/deinit" class="dashAnchor"></a>
 | 
					 | 
				
			||||||
                    <a class="token" href="#/c:@M@SocketIO@objc(cs)SocketManager(im)dealloc">deinit</a>
 | 
					 | 
				
			||||||
                    </code>
 | 
					 | 
				
			||||||
                  </div>
 | 
					 | 
				
			||||||
                  <div class="height-container">
 | 
					 | 
				
			||||||
                    <div class="pointer-container"></div>
 | 
					 | 
				
			||||||
                    <section class="section">
 | 
					 | 
				
			||||||
                      <div class="pointer"></div>
 | 
					 | 
				
			||||||
                      <div class="abstract">
 | 
					 | 
				
			||||||
                        <p>Undocumented</p>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                      </div>
 | 
					 | 
				
			||||||
                      <div class="declaration">
 | 
					 | 
				
			||||||
                        <h4>Declaration</h4>
 | 
					 | 
				
			||||||
                        <div class="language">
 | 
					 | 
				
			||||||
                          <p class="aside-title">Swift</p>
 | 
					 | 
				
			||||||
                          <pre class="highlight swift"><code><span class="kd">deinit</span></code></pre>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                        </div>
 | 
					 | 
				
			||||||
                      </div>
 | 
					 | 
				
			||||||
                    </section>
 | 
					 | 
				
			||||||
                  </div>
 | 
					 | 
				
			||||||
                </li>
 | 
					 | 
				
			||||||
              </ul>
 | 
					              </ul>
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
            <div class="task-group">
 | 
					            <div class="task-group">
 | 
				
			||||||
@ -1674,7 +1647,7 @@ Or call <code><a href="../Classes/SocketIOClient.html#/c:@M@SocketIO@objc(cs)Soc
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="../index.html">
 | 
					        <a class="header-link" href="../index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -309,7 +309,7 @@ will be emitted. The structure of the error data is <code>[ackNum, items, theErr
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="../index.html">
 | 
					        <a class="header-link" href="../index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -479,7 +479,7 @@ Check that your server’s api will ack the event being sent.</p>
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="index.html">
 | 
					        <a class="header-link" href="index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -393,7 +393,7 @@
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="../index.html">
 | 
					        <a class="header-link" href="../index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -243,7 +243,7 @@
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="../index.html">
 | 
					        <a class="header-link" href="../index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -517,7 +517,7 @@ if you are working in Objective-C.</p>
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="../index.html">
 | 
					        <a class="header-link" href="../index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -399,7 +399,7 @@
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="../index.html">
 | 
					        <a class="header-link" href="../index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -391,6 +391,33 @@ or when you want to be sure no state from previous engines is being carried over
 | 
				
			|||||||
                    </section>
 | 
					                    </section>
 | 
				
			||||||
                  </div>
 | 
					                  </div>
 | 
				
			||||||
                </li>
 | 
					                </li>
 | 
				
			||||||
 | 
					                <li class="item">
 | 
				
			||||||
 | 
					                  <div>
 | 
				
			||||||
 | 
					                    <code>
 | 
				
			||||||
 | 
					                    <a name="/s:8SocketIO0A14IOClientOptionO16enableSOCKSProxyyACSbcACmF"></a>
 | 
				
			||||||
 | 
					                    <a name="//apple_ref/swift/Element/enableSOCKSProxy(_:)" class="dashAnchor"></a>
 | 
				
			||||||
 | 
					                    <a class="token" href="#/s:8SocketIO0A14IOClientOptionO16enableSOCKSProxyyACSbcACmF">enableSOCKSProxy(_:)</a>
 | 
				
			||||||
 | 
					                    </code>
 | 
				
			||||||
 | 
					                  </div>
 | 
				
			||||||
 | 
					                  <div class="height-container">
 | 
				
			||||||
 | 
					                    <div class="pointer-container"></div>
 | 
				
			||||||
 | 
					                    <section class="section">
 | 
				
			||||||
 | 
					                      <div class="pointer"></div>
 | 
				
			||||||
 | 
					                      <div class="abstract">
 | 
				
			||||||
 | 
					                        <p>If passed <code>true</code>, the WebSocket stream will be configured with the enableSOCKSProxy <code>true</code>.</p>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                      </div>
 | 
				
			||||||
 | 
					                      <div class="declaration">
 | 
				
			||||||
 | 
					                        <h4>Declaration</h4>
 | 
				
			||||||
 | 
					                        <div class="language">
 | 
				
			||||||
 | 
					                          <p class="aside-title">Swift</p>
 | 
				
			||||||
 | 
					                          <pre class="highlight swift"><code><span class="k">case</span> <span class="nf">enableSOCKSProxy</span><span class="p">(</span><span class="kt">Bool</span><span class="p">)</span></code></pre>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                        </div>
 | 
				
			||||||
 | 
					                      </div>
 | 
				
			||||||
 | 
					                    </section>
 | 
				
			||||||
 | 
					                  </div>
 | 
				
			||||||
 | 
					                </li>
 | 
				
			||||||
                <li class="item">
 | 
					                <li class="item">
 | 
				
			||||||
                  <div>
 | 
					                  <div>
 | 
				
			||||||
                    <code>
 | 
					                    <code>
 | 
				
			||||||
@ -865,7 +892,7 @@ over when reconnects happen.</p>
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="../index.html">
 | 
					        <a class="header-link" href="../index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -392,7 +392,7 @@
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="../index.html">
 | 
					        <a class="header-link" href="../index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -297,7 +297,7 @@
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="index.html">
 | 
					        <a class="header-link" href="index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -199,7 +199,7 @@
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="index.html">
 | 
					        <a class="header-link" href="index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -579,7 +579,7 @@ or call one of the <code>disconnectSocket</code> methods on this class.</p>
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="../index.html">
 | 
					        <a class="header-link" href="../index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -262,7 +262,7 @@
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="../index.html">
 | 
					        <a class="header-link" href="../index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -264,7 +264,7 @@
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="../index.html">
 | 
					        <a class="header-link" href="../index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -248,7 +248,7 @@ So this should ideally be an array of one packet waiting for data.</p>
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="../index.html">
 | 
					        <a class="header-link" href="../index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -547,7 +547,7 @@
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="../index.html">
 | 
					        <a class="header-link" href="../index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -526,7 +526,7 @@ disconnect us.</p>
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="../index.html">
 | 
					        <a class="header-link" href="../index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -1157,7 +1157,7 @@ the engine is attempting to upgrade to WebSocket it does not do any POSTing.</p>
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="../index.html">
 | 
					        <a class="header-link" href="../index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -310,7 +310,7 @@
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="../index.html">
 | 
					        <a class="header-link" href="../index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -1668,7 +1668,7 @@ Called when the manager detects a broken connection, or when a manual reconnect
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="../index.html">
 | 
					        <a class="header-link" href="../index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -410,7 +410,7 @@
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="../index.html">
 | 
					        <a class="header-link" href="../index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -975,7 +975,7 @@ Or call <code><a href="../Classes/SocketIOClient.html#/c:@M@SocketIO@objc(cs)Soc
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="../index.html">
 | 
					        <a class="header-link" href="../index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -336,7 +336,7 @@ into the correct placeholder.</p>
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="index.html">
 | 
					        <a class="header-link" href="index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -295,7 +295,7 @@
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="../index.html">
 | 
					        <a class="header-link" href="../index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -378,7 +378,7 @@
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="../index.html">
 | 
					        <a class="header-link" href="../index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -709,7 +709,7 @@
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="../index.html">
 | 
					        <a class="header-link" href="../index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -505,7 +505,7 @@ event type packets.</p>
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="../../index.html">
 | 
					        <a class="header-link" href="../../index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -443,7 +443,7 @@
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -23,7 +23,7 @@
 | 
				
			|||||||
        <a class="header-link" href="index.html">
 | 
					        <a class="header-link" href="index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -284,7 +284,7 @@
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -1,15 +1,15 @@
 | 
				
			|||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="128" height="20">
 | 
					<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="136" height="20">
 | 
				
			||||||
  <linearGradient id="b" x2="0" y2="100%">
 | 
					  <linearGradient id="b" x2="0" y2="100%">
 | 
				
			||||||
    <stop offset="0" stop-color="#bbb" stop-opacity=".1"/>
 | 
					    <stop offset="0" stop-color="#bbb" stop-opacity=".1"/>
 | 
				
			||||||
    <stop offset="1" stop-opacity=".1"/>
 | 
					    <stop offset="1" stop-opacity=".1"/>
 | 
				
			||||||
  </linearGradient>
 | 
					  </linearGradient>
 | 
				
			||||||
  <clipPath id="a">
 | 
					  <clipPath id="a">
 | 
				
			||||||
    <rect width="128" height="20" rx="3" fill="#fff"/>
 | 
					    <rect width="136" height="20" rx="3" fill="#fff"/>
 | 
				
			||||||
  </clipPath>
 | 
					  </clipPath>
 | 
				
			||||||
  <g clip-path="url(#a)">
 | 
					  <g clip-path="url(#a)">
 | 
				
			||||||
    <path fill="#555" d="M0 0h93v20H0z"/>
 | 
					    <path fill="#555" d="M0 0h93v20H0z"/>
 | 
				
			||||||
    <path fill="#4c1" d="M93 0h35v20H93z"/>
 | 
					    <path fill="#4c1" d="M93 0h43v20H93z"/>
 | 
				
			||||||
    <path fill="url(#b)" d="M0 0h128v20H0z"/>
 | 
					    <path fill="url(#b)" d="M0 0h136v20H0z"/>
 | 
				
			||||||
  </g>
 | 
					  </g>
 | 
				
			||||||
  <g fill="#fff" text-anchor="middle" font-family="DejaVu Sans,Verdana,Geneva,sans-serif" font-size="110">
 | 
					  <g fill="#fff" text-anchor="middle" font-family="DejaVu Sans,Verdana,Geneva,sans-serif" font-size="110">
 | 
				
			||||||
    <text x="475" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="830">
 | 
					    <text x="475" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="830">
 | 
				
			||||||
@ -18,11 +18,11 @@
 | 
				
			|||||||
    <text x="475" y="140" transform="scale(.1)" textLength="830">
 | 
					    <text x="475" y="140" transform="scale(.1)" textLength="830">
 | 
				
			||||||
      documentation
 | 
					      documentation
 | 
				
			||||||
    </text>
 | 
					    </text>
 | 
				
			||||||
    <text x="1095" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="250">
 | 
					    <text x="1135" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="330">
 | 
				
			||||||
      98%
 | 
					      100%
 | 
				
			||||||
    </text>
 | 
					    </text>
 | 
				
			||||||
    <text x="1095" y="140" transform="scale(.1)" textLength="250">
 | 
					    <text x="1135" y="140" transform="scale(.1)" textLength="330">
 | 
				
			||||||
      98%
 | 
					      100%
 | 
				
			||||||
    </text>
 | 
					    </text>
 | 
				
			||||||
  </g>
 | 
					  </g>
 | 
				
			||||||
</svg>
 | 
					</svg>
 | 
				
			||||||
 | 
				
			|||||||
| 
		 Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB  | 
@ -22,7 +22,7 @@
 | 
				
			|||||||
        <a class="header-link" href="index.html">
 | 
					        <a class="header-link" href="index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -232,7 +232,7 @@ will be released, along with the socket, and its memory reclaimed.</p>
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
@ -22,7 +22,7 @@
 | 
				
			|||||||
        <a class="header-link" href="index.html">
 | 
					        <a class="header-link" href="index.html">
 | 
				
			||||||
          SocketIO Docs
 | 
					          SocketIO Docs
 | 
				
			||||||
        </a>
 | 
					        </a>
 | 
				
			||||||
         (98% documented)
 | 
					         (100% documented)
 | 
				
			||||||
      </p>
 | 
					      </p>
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
      <p class="header-col--secondary">
 | 
					      <p class="header-col--secondary">
 | 
				
			||||||
@ -281,7 +281,7 @@ SocketIOClient* socket = manager.defaultSocket;
 | 
				
			|||||||
<h3 id='carthage' class='heading'>Carthage</h3>
 | 
					<h3 id='carthage' class='heading'>Carthage</h3>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<p>Add this line to your <code>Cartfile</code>:</p>
 | 
					<p>Add this line to your <code>Cartfile</code>:</p>
 | 
				
			||||||
<pre class="highlight plaintext"><code>github "socketio/socket.io-client-swift" ~> 15.0.0
 | 
					<pre class="highlight plaintext"><code>github "socketio/socket.io-client-swift" ~> 15.1.0
 | 
				
			||||||
</code></pre>
 | 
					</code></pre>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<p>Run <code>carthage update --platform ios,macosx</code>.</p>
 | 
					<p>Run <code>carthage update --platform ios,macosx</code>.</p>
 | 
				
			||||||
@ -293,7 +293,7 @@ SocketIOClient* socket = manager.defaultSocket;
 | 
				
			|||||||
<pre class="highlight ruby"><code><span class="n">use_frameworks!</span>
 | 
					<pre class="highlight ruby"><code><span class="n">use_frameworks!</span>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<span class="n">target</span> <span class="s1">'YourApp'</span> <span class="k">do</span>
 | 
					<span class="n">target</span> <span class="s1">'YourApp'</span> <span class="k">do</span>
 | 
				
			||||||
    <span class="n">pod</span> <span class="s1">'Socket.IO-Client-Swift'</span><span class="p">,</span> <span class="s1">'~> 15.0.0'</span>
 | 
					    <span class="n">pod</span> <span class="s1">'Socket.IO-Client-Swift'</span><span class="p">,</span> <span class="s1">'~> 15.1.0'</span>
 | 
				
			||||||
<span class="k">end</span>
 | 
					<span class="k">end</span>
 | 
				
			||||||
</code></pre>
 | 
					</code></pre>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -334,7 +334,7 @@ SocketIOClient* socket = manager.defaultSocket;
 | 
				
			|||||||
      </article>
 | 
					      </article>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <section class="footer">
 | 
					    <section class="footer">
 | 
				
			||||||
      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-03-28)</p>
 | 
					      <p>© 2019 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2019-05-28)</p>
 | 
				
			||||||
      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
					      <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
 | 
				
			|||||||
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user