Instance Method (Default implementation)swift-nio 2.72.0NIOCore
isSameExclusiveExecutionContext(other:)
EventLoop+SerialExecutor.swift:49- iOS
- 17.0+
- macOS
- 14.0+
- tvOS
- 17.0+
- watchOS
- 10.0+
func isSameExclusiveExecutionContext(other: Self) -> Bool
Implements
func isSameExclusiveExecutionContext(other: Self
) -> Bool If this executor has complex equality semantics, and the runtime needs to compare two executors, it will first attempt the usual pointer-based equality check, and if it fails it will compare the types of both executors, if they are the same, it will finally invoke this method, in an attempt to let the executor itself decide if this and the
other
executor represent the same serial, exclusive, isolation context.