Skip to content
Snippets Groups Projects

Update Bindings

Merged Dariusz Rybicki requested to merge feature/update-bindings into development
4 files
+ 102
27
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -4,6 +4,7 @@ public struct Connection {
@@ -4,6 +4,7 @@ public struct Connection {
public var isAuthenticated: ConnectionIsAuthenticated
public var isAuthenticated: ConnectionIsAuthenticated
public var getId: ConnectionGetId
public var getId: ConnectionGetId
public var getPartner: ConnectionGetPartner
public var getPartner: ConnectionGetPartner
 
public var registerListener: ConnectionRegisterListener
public var send: ConnectionSend
public var send: ConnectionSend
public var close: ConnectionClose
public var close: ConnectionClose
}
}
@@ -14,6 +15,7 @@ extension Connection {
@@ -14,6 +15,7 @@ extension Connection {
isAuthenticated: .live(bindingsConnection),
isAuthenticated: .live(bindingsConnection),
getId: .live(bindingsConnection),
getId: .live(bindingsConnection),
getPartner: .live(bindingsConnection),
getPartner: .live(bindingsConnection),
 
registerListener: .live(bindingsConnection),
send: .live(bindingsConnection),
send: .live(bindingsConnection),
close: .live(bindingsConnection)
close: .live(bindingsConnection)
)
)
@@ -24,6 +26,7 @@ extension Connection {
@@ -24,6 +26,7 @@ extension Connection {
isAuthenticated: .live(bindingsConnection),
isAuthenticated: .live(bindingsConnection),
getId: .live(bindingsConnection),
getId: .live(bindingsConnection),
getPartner: .live(bindingsConnection),
getPartner: .live(bindingsConnection),
 
registerListener: .live(bindingsConnection),
send: .live(bindingsConnection),
send: .live(bindingsConnection),
close: .live(bindingsConnection)
close: .live(bindingsConnection)
)
)
@@ -35,6 +38,7 @@ extension Connection {
@@ -35,6 +38,7 @@ extension Connection {
isAuthenticated: .unimplemented,
isAuthenticated: .unimplemented,
getId: .unimplemented,
getId: .unimplemented,
getPartner: .unimplemented,
getPartner: .unimplemented,
 
registerListener: .unimplemented,
send: .unimplemented,
send: .unimplemented,
close: .unimplemented
close: .unimplemented
)
)
Loading