Other Type Aliases
The following type aliases are available globally.
-
A change handler is called whenever an active change observer receives a new result.
Declaration
Swift
public typealias DittoChangeHandler = (_ result: DittoQueryResult) -> Void
-
A change handler is called whenever an active change observer receives a new result.
Call
signalNext()
to signal that the handler is ready to receive the next callback from the change observer.Declaration
Swift
public typealias DittoChangeHandlerWithSignalNext = (_ result: DittoQueryResult, _ signalNext: @escaping DittoSignalNext) -> Void
-
Undocumented
Declaration
Swift
public typealias DittoSignalNext = () -> Void