Skip to content

Commit ac695eb

Browse files
weissiLukasa
andauthored
EventLoopFuture/Promise: only Sendable if Value is Sendable (#2496)
Co-authored-by: Cory Benfield <[email protected]>
1 parent cf28163 commit ac695eb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Sources/NIOCore/EventLoopFuture.swift

+4-4
Original file line numberDiff line numberDiff line change
@@ -2293,13 +2293,13 @@ public struct _NIOEventLoopFutureIdentifier: Hashable, Sendable {
22932293
}
22942294
}
22952295

2296-
// EventLoopPromise is a reference type, but by its very nature is Sendable.
2297-
extension EventLoopPromise: Sendable { }
2296+
// EventLoopPromise is a reference type, but by its very nature is Sendable (if its Value is).
2297+
extension EventLoopPromise: Sendable where Value: Sendable { }
22982298

2299-
// EventLoopFuture is a reference type, but it is Sendable. However, we enforce
2299+
// EventLoopFuture is a reference type, but it is Sendable (if its Value is). However, we enforce
23002300
// that by way of the guarantees of the EventLoop protocol, so the compiler cannot
23012301
// check it.
2302-
extension EventLoopFuture: @unchecked Sendable { }
2302+
extension EventLoopFuture: @unchecked Sendable where Value: Sendable { }
23032303

23042304
extension EventLoopPromise where Value == Void {
23052305
// Deliver a successful result to the associated `EventLoopFuture<Void>` object.

0 commit comments

Comments
 (0)