Skip to content

Commit

Permalink
fix: added missing method
Browse files Browse the repository at this point in the history
  • Loading branch information
shaunak-jagtap committed Jul 3, 2023
1 parent 72016eb commit 0ed8f1d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Source/SocketIO/Engine/SocketEngine.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,11 @@ import Starscream
/// The class that handles the engine.io protocol and transports.
/// See `SocketEnginePollable` and `SocketEngineWebsocket` for transport specific methods.
open class SocketEngine:
NSObject, WebSocketDelegate, URLSessionDelegate, SocketEnginePollable, SocketEngineWebsocket, ConfigSettable {
NSObject, WebSocketDelegate, URLSessionDelegate, SocketEnginePollable, SocketEngineWebsocket, ConfigSettable {
public func didReceive(event: Starscream.WebSocketEvent, client: Starscream.WebSocketClient) {

}

// MARK: Properties

private static let logType = "SocketEngine"
Expand Down

0 comments on commit 0ed8f1d

Please sign in to comment.