mirror of
https://github.com/apple/foundationdb.git
synced 2025-06-02 11:15:50 +08:00
15 lines
412 B
Swift
15 lines
412 B
Swift
import Flow
|
|
import flow_swift
|
|
import FDBClient
|
|
|
|
// ==== ---------------------------------------------------------------------------------------------------------------
|
|
|
|
/*extension NotifiedVersion {
|
|
|
|
/// async version of `whenAtLeast`
|
|
public func atLeast(_ limit: VersionMetricHandle.ValueType) async throws {
|
|
var f: FutureVoid = self.whenAtLeast(limit)
|
|
_ = try await f.value()
|
|
}
|
|
}*/
|