Skip to content

Commit 6e69523

Browse files
committed
Add an alternatives considered section for using an enum in the package
manifest API.
1 parent d7eb356 commit 6e69523

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

proposals/NNNN-control-default-actor-isolation.md

+29
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,35 @@ Instead of introducing a separate mode for configuring default actor isolation i
166166

167167
See the approachable data-race safety vision document for an [analysis on the risks of introducing a language dialect](https://github.com/hborla/swift-evolution/blob/approachable-concurrency-vision/visions/approachable-concurrency.md#risks-of-a-language-dialect) for default actor isolation.
168168

169+
### Use an enum for the package manifest API
170+
171+
An alternative to using a `MainActor` metatype for the Swift package manifest API is to use an enum, e.g.
172+
173+
```swift
174+
public enum DefaultActorIsolation {
175+
case mainActor
176+
case nonisolated
177+
}
178+
179+
extension SwiftSetting {
180+
@available(_PackageDescription, introduced: 6.2)
181+
public static func defaultIsolation(
182+
_ isolation: DefaultActorIsolation,
183+
_ condition: BuildSettingCondition? = nil
184+
) -> SwiftSetting
185+
}
186+
187+
// in a package manifest
188+
189+
swiftSettings: [
190+
.defaultIsolation(.mainActor)
191+
]
192+
```
193+
194+
The enum approach introduces a different way of writing main actor isolation that does not involve the `MainActor` global actor type. The proposed design matches exactly the values used for `#isolation`, i.e. `MainActor.self` for main actor isolation and `nil` for `nonisolated`, which programmers are already familiar with.
195+
196+
The primary argument for using an enum is that it can be extended in the future to support custom global actor types. This proposal deliberately puts supporting custom global actors in the alternatives considered and not future directions, because defaulting a module to a different global actor does not help improve progressive disclosure for concurrency.
197+
169198
## Acknowledgments
170199

171200
Thank you to John McCall for providing much of the motivation for this pitch in the approachable data-race safety vision document, and to Michael Gottesman for helping with the implementation.

0 commit comments

Comments
 (0)