Operatorswift-nio 2.84.0NIOCore
-(_:_:)
EventLoop.swift:974static func - (lhs: NIODeadline, rhs: NIODeadline) -> TimeAmount
static func - (lhs: NIODeadline, rhs: NIODeadline) -> TimeAmount
import NIOCore
The core abstractions that make up SwiftNIO.
struct NIODeadline
Represents a point in time.
struct TimeAmount
Represents a time interval.
static var distantFuture: NIODeadline { get }
static var distantPast: NIODeadline { get }
static func now() -> NIODeadline
static func uptimeNanoseconds(_ nanoseconds: UInt64) -> NIODeadline
var description: String { get }
var uptimeNanoseconds: UInt64 { get }
The nanoseconds since boot representation of the NIODeadline
.
static func + (lhs: NIODeadline, rhs: TimeAmount) -> NIODeadline
static func - (lhs: NIODeadline, rhs: TimeAmount) -> NIODeadline
static func < (lhs: NIODeadline, rhs: NIODeadline) -> Bool
static func == (lhs: NIODeadline, rhs: NIODeadline) -> Bool
static func > (lhs: NIODeadline, rhs: NIODeadline) -> Bool
func hash(into hasher: inout Hasher)
typealias Value = UInt64