You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Sources/AsyncObjects/Continuation/ContinuableCollectionActor.swift
+1-3
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,12 @@
1
-
#if swift(>=5.7)
2
1
import Foundation
3
2
3
+
#if swift(>=5.7)
4
4
/// An actor type that manages a collection of continuations with an associated key.
5
5
///
6
6
/// On `Swift 5.7` and above [actor isolation bug with protocol conformance](https://forums.swift.org/t/actor-isolation-is-broken-by-protocol-conformance/57040)
7
7
/// is fixed, and hence original protocol can be used without any issue.
/// An actor type that manages a collection of continuations with an associated key.
13
11
///
14
12
/// This is to avoid [actor isolation bug with protocol conformance on older `Swift` versions](https://forums.swift.org/t/actor-isolation-is-broken-by-protocol-conformance/57040).
0 commit comments