Skip to content

Commit

Permalink
Made the websocket public
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Delannoy authored and ketenshi committed Mar 3, 2020
1 parent 84c7cd9 commit 50d8f27
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Sources/ApolloWebSocket/WebSocketTransport.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ public class WebSocketTransport {
public weak var delegate: WebSocketTransportDelegate?

let reconnect: Atomic<Bool>
var websocket: ApolloWebSocketClient
public private(set) var websocket: ApolloWebSocketClient
let error: Atomic<Error?> = Atomic(nil)

let serializationFormat = JSONSerializationFormat.self
private let requestCreator: RequestCreator

Expand Down

0 comments on commit 50d8f27

Please sign in to comment.