├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── Examples ├── ConnectionSample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── MainMenu.xib │ └── Info.plist ├── HubSample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── MainMenu.xib │ └── Info.plist ├── HubSamplePhone │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── Playground │ └── Playground.playground │ │ ├── Contents.swift │ │ ├── contents.xcplayground │ │ └── playground.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── SignalRClient.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── SignalRClient │ ├── Info.plist │ └── SignalRClient.h └── TestServer │ ├── ChatHub.cs │ ├── EchoConnectionHandler.cs │ ├── NuGet.config │ ├── Person.cs │ ├── PlaygroundHub.cs │ ├── Program.cs │ ├── Startup.cs │ ├── TestHub.cs │ ├── TestServer.csproj │ ├── TestServer.sln │ ├── package-lock.json │ ├── package.json │ └── wwwroot │ └── index.html ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── SignalRClient │ ├── ClientStreamWorker.swift │ ├── CodableHelpers.swift │ ├── Connection.swift │ ├── ConnectionDelegate.swift │ ├── DefaultHttpClient.swift │ ├── DefaultTransportFactory.swift │ ├── HandshakeProtocol.swift │ ├── HttpClientProtocol.swift │ ├── HttpConnection.swift │ ├── HttpConnectionOptions.swift │ ├── HttpResponse.swift │ ├── HubConnection.swift │ ├── HubConnectionBuilder.swift │ ├── HubConnectionDelegate.swift │ ├── HubConnectionExtensions.swift │ ├── HubConnectionOptions.swift │ ├── HubProtocol.swift │ ├── JSONHubProtocol.swift │ ├── Logger.swift │ ├── LongPollingTransport.swift │ ├── NegotiationResponse.swift │ ├── ReconnectPolicy.swift │ ├── ReconnectableConnection.swift │ ├── ServerInvocationHandler.swift │ ├── SignalRError.swift │ ├── StreamHandle.swift │ ├── TransferFormat.swift │ ├── Transport.swift │ ├── TransportDelegate.swift │ ├── TransportType.swift │ └── WebsocketsTransport.swift ├── SwiftSignalRClient.podspec └── Tests └── SignalRClientTests ├── ClientStreamWorkerTests.swift ├── Constants.swift ├── Fakes.swift ├── HandshakeProtocolTests.swift ├── HttpConnectionTests.swift ├── HubConnectionExtensionsTests.swift ├── HubConnectionTests.swift ├── HubProtocolFake.swift ├── JSONHubProtocolTests.swift ├── LoggerTests.swift ├── LongPollingTransportTests.swift ├── NegotiationResponseTests.swift ├── ReconnectPolicyTests.swift ├── ReconnectableConnectionTests.swift ├── ServerInvocationHandlerTests.swift ├── TestTransport.swift ├── TestTransportDelegate.swift ├── TestUtils.swift ├── TransportTypeTests.swift └── WebsocketsTransportTests.swift /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/.gitignore -------------------------------------------------------------------------------- /Examples/ConnectionSample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/ConnectionSample/AppDelegate.swift -------------------------------------------------------------------------------- /Examples/ConnectionSample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/ConnectionSample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/ConnectionSample/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/ConnectionSample/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Examples/ConnectionSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/ConnectionSample/Info.plist -------------------------------------------------------------------------------- /Examples/HubSample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/HubSample/AppDelegate.swift -------------------------------------------------------------------------------- /Examples/HubSample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/HubSample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/HubSample/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/HubSample/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Examples/HubSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/HubSample/Info.plist -------------------------------------------------------------------------------- /Examples/HubSamplePhone/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/HubSamplePhone/AppDelegate.swift -------------------------------------------------------------------------------- /Examples/HubSamplePhone/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/HubSamplePhone/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/HubSamplePhone/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/HubSamplePhone/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Examples/HubSamplePhone/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/HubSamplePhone/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/HubSamplePhone/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/HubSamplePhone/Info.plist -------------------------------------------------------------------------------- /Examples/HubSamplePhone/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/HubSamplePhone/ViewController.swift -------------------------------------------------------------------------------- /Examples/Playground/Playground.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/Playground/Playground.playground/Contents.swift -------------------------------------------------------------------------------- /Examples/Playground/Playground.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/Playground/Playground.playground/contents.xcplayground -------------------------------------------------------------------------------- /Examples/Playground/Playground.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/Playground/Playground.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/Playground/Playground.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/Playground/Playground.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Examples/SignalRClient.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/SignalRClient.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/SignalRClient.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/SignalRClient.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/SignalRClient.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/SignalRClient.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Examples/SignalRClient/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/SignalRClient/Info.plist -------------------------------------------------------------------------------- /Examples/SignalRClient/SignalRClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/SignalRClient/SignalRClient.h -------------------------------------------------------------------------------- /Examples/TestServer/ChatHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/TestServer/ChatHub.cs -------------------------------------------------------------------------------- /Examples/TestServer/EchoConnectionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/TestServer/EchoConnectionHandler.cs -------------------------------------------------------------------------------- /Examples/TestServer/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/TestServer/NuGet.config -------------------------------------------------------------------------------- /Examples/TestServer/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/TestServer/Person.cs -------------------------------------------------------------------------------- /Examples/TestServer/PlaygroundHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/TestServer/PlaygroundHub.cs -------------------------------------------------------------------------------- /Examples/TestServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/TestServer/Program.cs -------------------------------------------------------------------------------- /Examples/TestServer/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/TestServer/Startup.cs -------------------------------------------------------------------------------- /Examples/TestServer/TestHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/TestServer/TestHub.cs -------------------------------------------------------------------------------- /Examples/TestServer/TestServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/TestServer/TestServer.csproj -------------------------------------------------------------------------------- /Examples/TestServer/TestServer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/TestServer/TestServer.sln -------------------------------------------------------------------------------- /Examples/TestServer/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/TestServer/package-lock.json -------------------------------------------------------------------------------- /Examples/TestServer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/TestServer/package.json -------------------------------------------------------------------------------- /Examples/TestServer/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Examples/TestServer/wwwroot/index.html -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/README.md -------------------------------------------------------------------------------- /Sources/SignalRClient/ClientStreamWorker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/ClientStreamWorker.swift -------------------------------------------------------------------------------- /Sources/SignalRClient/CodableHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/CodableHelpers.swift -------------------------------------------------------------------------------- /Sources/SignalRClient/Connection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/Connection.swift -------------------------------------------------------------------------------- /Sources/SignalRClient/ConnectionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/ConnectionDelegate.swift -------------------------------------------------------------------------------- /Sources/SignalRClient/DefaultHttpClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/DefaultHttpClient.swift -------------------------------------------------------------------------------- /Sources/SignalRClient/DefaultTransportFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/DefaultTransportFactory.swift -------------------------------------------------------------------------------- /Sources/SignalRClient/HandshakeProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/HandshakeProtocol.swift -------------------------------------------------------------------------------- /Sources/SignalRClient/HttpClientProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/HttpClientProtocol.swift -------------------------------------------------------------------------------- /Sources/SignalRClient/HttpConnection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/HttpConnection.swift -------------------------------------------------------------------------------- /Sources/SignalRClient/HttpConnectionOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/HttpConnectionOptions.swift -------------------------------------------------------------------------------- /Sources/SignalRClient/HttpResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/HttpResponse.swift -------------------------------------------------------------------------------- /Sources/SignalRClient/HubConnection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/HubConnection.swift -------------------------------------------------------------------------------- /Sources/SignalRClient/HubConnectionBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/HubConnectionBuilder.swift -------------------------------------------------------------------------------- /Sources/SignalRClient/HubConnectionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/HubConnectionDelegate.swift -------------------------------------------------------------------------------- /Sources/SignalRClient/HubConnectionExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/HubConnectionExtensions.swift -------------------------------------------------------------------------------- /Sources/SignalRClient/HubConnectionOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/HubConnectionOptions.swift -------------------------------------------------------------------------------- /Sources/SignalRClient/HubProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/HubProtocol.swift -------------------------------------------------------------------------------- /Sources/SignalRClient/JSONHubProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/JSONHubProtocol.swift -------------------------------------------------------------------------------- /Sources/SignalRClient/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/Logger.swift -------------------------------------------------------------------------------- /Sources/SignalRClient/LongPollingTransport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/LongPollingTransport.swift -------------------------------------------------------------------------------- /Sources/SignalRClient/NegotiationResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/NegotiationResponse.swift -------------------------------------------------------------------------------- /Sources/SignalRClient/ReconnectPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/ReconnectPolicy.swift -------------------------------------------------------------------------------- /Sources/SignalRClient/ReconnectableConnection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/ReconnectableConnection.swift -------------------------------------------------------------------------------- /Sources/SignalRClient/ServerInvocationHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/ServerInvocationHandler.swift -------------------------------------------------------------------------------- /Sources/SignalRClient/SignalRError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/SignalRError.swift -------------------------------------------------------------------------------- /Sources/SignalRClient/StreamHandle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/StreamHandle.swift -------------------------------------------------------------------------------- /Sources/SignalRClient/TransferFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/TransferFormat.swift -------------------------------------------------------------------------------- /Sources/SignalRClient/Transport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/Transport.swift -------------------------------------------------------------------------------- /Sources/SignalRClient/TransportDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/TransportDelegate.swift -------------------------------------------------------------------------------- /Sources/SignalRClient/TransportType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/TransportType.swift -------------------------------------------------------------------------------- /Sources/SignalRClient/WebsocketsTransport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Sources/SignalRClient/WebsocketsTransport.swift -------------------------------------------------------------------------------- /SwiftSignalRClient.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/SwiftSignalRClient.podspec -------------------------------------------------------------------------------- /Tests/SignalRClientTests/ClientStreamWorkerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Tests/SignalRClientTests/ClientStreamWorkerTests.swift -------------------------------------------------------------------------------- /Tests/SignalRClientTests/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Tests/SignalRClientTests/Constants.swift -------------------------------------------------------------------------------- /Tests/SignalRClientTests/Fakes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Tests/SignalRClientTests/Fakes.swift -------------------------------------------------------------------------------- /Tests/SignalRClientTests/HandshakeProtocolTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Tests/SignalRClientTests/HandshakeProtocolTests.swift -------------------------------------------------------------------------------- /Tests/SignalRClientTests/HttpConnectionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Tests/SignalRClientTests/HttpConnectionTests.swift -------------------------------------------------------------------------------- /Tests/SignalRClientTests/HubConnectionExtensionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Tests/SignalRClientTests/HubConnectionExtensionsTests.swift -------------------------------------------------------------------------------- /Tests/SignalRClientTests/HubConnectionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Tests/SignalRClientTests/HubConnectionTests.swift -------------------------------------------------------------------------------- /Tests/SignalRClientTests/HubProtocolFake.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Tests/SignalRClientTests/HubProtocolFake.swift -------------------------------------------------------------------------------- /Tests/SignalRClientTests/JSONHubProtocolTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Tests/SignalRClientTests/JSONHubProtocolTests.swift -------------------------------------------------------------------------------- /Tests/SignalRClientTests/LoggerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Tests/SignalRClientTests/LoggerTests.swift -------------------------------------------------------------------------------- /Tests/SignalRClientTests/LongPollingTransportTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Tests/SignalRClientTests/LongPollingTransportTests.swift -------------------------------------------------------------------------------- /Tests/SignalRClientTests/NegotiationResponseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Tests/SignalRClientTests/NegotiationResponseTests.swift -------------------------------------------------------------------------------- /Tests/SignalRClientTests/ReconnectPolicyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Tests/SignalRClientTests/ReconnectPolicyTests.swift -------------------------------------------------------------------------------- /Tests/SignalRClientTests/ReconnectableConnectionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Tests/SignalRClientTests/ReconnectableConnectionTests.swift -------------------------------------------------------------------------------- /Tests/SignalRClientTests/ServerInvocationHandlerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Tests/SignalRClientTests/ServerInvocationHandlerTests.swift -------------------------------------------------------------------------------- /Tests/SignalRClientTests/TestTransport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Tests/SignalRClientTests/TestTransport.swift -------------------------------------------------------------------------------- /Tests/SignalRClientTests/TestTransportDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Tests/SignalRClientTests/TestTransportDelegate.swift -------------------------------------------------------------------------------- /Tests/SignalRClientTests/TestUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Tests/SignalRClientTests/TestUtils.swift -------------------------------------------------------------------------------- /Tests/SignalRClientTests/TransportTypeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Tests/SignalRClientTests/TransportTypeTests.swift -------------------------------------------------------------------------------- /Tests/SignalRClientTests/WebsocketsTransportTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moozzyk/SignalR-Client-Swift/HEAD/Tests/SignalRClientTests/WebsocketsTransportTests.swift --------------------------------------------------------------------------------