58 lines
2.1 KiB
Swift
58 lines
2.1 KiB
Swift
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This source file is part of the SwiftNIO open source project
|
|
//
|
|
// Copyright (c) 2021-2022 Apple Inc. and the SwiftNIO project authors
|
|
// Licensed under Apache License v2.0
|
|
//
|
|
// See LICENSE.txt for license information
|
|
// See CONTRIBUTORS.txt for the list of SwiftNIO project authors
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
@available(*, deprecated, renamed: "Sendable")
|
|
public typealias NIOSendable = Swift.Sendable
|
|
|
|
@preconcurrency public protocol _NIOPreconcurrencySendable: Sendable {}
|
|
|
|
@available(*, deprecated, message: "use @preconcurrency and Sendable directly")
|
|
public typealias NIOPreconcurrencySendable = _NIOPreconcurrencySendable
|
|
|
|
/// ``UnsafeTransfer`` can be used to make non-`Sendable` values `Sendable`.
|
|
/// As the name implies, the usage of this is unsafe because it disables the sendable checking of the compiler.
|
|
/// It can be used similar to `@unsafe Sendable` but for values instead of types.
|
|
@usableFromInline
|
|
struct UnsafeTransfer<Wrapped> {
|
|
@usableFromInline
|
|
var wrappedValue: Wrapped
|
|
|
|
@inlinable
|
|
init(_ wrappedValue: Wrapped) {
|
|
self.wrappedValue = wrappedValue
|
|
}
|
|
}
|
|
|
|
extension UnsafeTransfer: @unchecked Sendable {}
|
|
|
|
extension UnsafeTransfer: Equatable where Wrapped: Equatable {}
|
|
extension UnsafeTransfer: Hashable where Wrapped: Hashable {}
|
|
|
|
/// ``UnsafeMutableTransferBox`` can be used to make non-`Sendable` values `Sendable` and mutable.
|
|
/// It can be used to capture local mutable values in a `@Sendable` closure and mutate them from within the closure.
|
|
/// As the name implies, the usage of this is unsafe because it disables the sendable checking of the compiler and does not add any synchronisation.
|
|
@usableFromInline
|
|
final class UnsafeMutableTransferBox<Wrapped> {
|
|
@usableFromInline
|
|
var wrappedValue: Wrapped
|
|
|
|
@inlinable
|
|
init(_ wrappedValue: Wrapped) {
|
|
self.wrappedValue = wrappedValue
|
|
}
|
|
}
|
|
|
|
extension UnsafeMutableTransferBox: @unchecked Sendable {}
|
|
|