We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ee85321 + 37457a3 commit 7cbbed9Copy full SHA for 7cbbed9
Sources/ObjectiveC.swift
@@ -40,6 +40,26 @@ import Foundation
40
}
41
42
43
+@objc public extension PusherConnection {
44
+ public var OCReconnectAttemptsMax: NSNumber? {
45
+ get {
46
+ return reconnectAttemptsMax as NSNumber?
47
+ }
48
+ set(newValue) {
49
+ reconnectAttemptsMax = newValue?.intValue
50
51
52
+
53
+ public var OCMaxReconnectGapInSeconds: NSNumber? {
54
55
+ return maxReconnectGapInSeconds as NSNumber?
56
57
58
+ maxReconnectGapInSeconds = newValue?.doubleValue
59
60
61
+}
62
63
@objc public extension PusherClientOptions {
64
public convenience init(
65
ocAuthMethod authMethod: OCAuthMethod,
0 commit comments