Connection
public protocol Connection : AnyObject
Undocumented
-
id
Default implementationUndocumented
Default Implementation
Undocumented
Declaration
Swift
var id: ObjectIdentifier { get }
-
Undocumented
Declaration
Swift
var isOpen: Bool { get }
-
Undocumented
Declaration
Swift
var channel: Channel { get }
-
close()
AsynchronousUndocumented
Declaration
Swift
func close() async throws
-
beginTransaction()
AsynchronousUndocumented
Declaration
Swift
func beginTransaction() async throws
-
commitTransaction()
AsynchronousUndocumented
Declaration
Swift
func commitTransaction() async throws
-
rollbackTransaction()
AsynchronousUndocumented
Declaration
Swift
func rollbackTransaction() async throws
-
query(_:
Default implementation, asynchronousarguments: ) Undocumented
Default Implementation
Undocumented
Declaration
Swift
@discardableResult func query(_ string: String, arguments parameters: [Codable?]) async throws -> QueryResult?
-
query(_:
Asynchronousarguments: ) Undocumented
Declaration
Swift
@discardableResult func query(_ string: String, arguments parameters: Codable?...) async throws -> QueryResult?