We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c97bb6b commit d938156Copy full SHA for d938156
Sources/Network/Websocket/Websocket.swift
@@ -15,10 +15,10 @@ public extension Flow {
15
private var isConnected = false
16
private var subscriptions: [String: (subject: PassthroughSubject<Any, Error>, type: Any.Type)] = [:]
17
private var cancellables = Set<AnyCancellable>()
18
- private var isDebug: Bool = false
19
private var timeoutInterval: TimeInterval = 10
20
private let connectionSubject = PassthroughSubject<Void, Never>()
21
private var isConnecting: Bool = false
+ public var isDebug: Bool = false
22
23
private var decoder: JSONDecoder {
24
let dateFormatter = DateFormatter()
0 commit comments