We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03421f8 commit 6a0bb72Copy full SHA for 6a0bb72
Sources/Atoms/Core/SubscriberState.swift
@@ -3,8 +3,8 @@ import Foundation
3
@MainActor
4
internal final class SubscriberState {
5
let token = SubscriberKey.Token()
6
- var subscribing = LockSendable(Set<AtomKey>())
7
- var unsubscribe = LockSendable<((Set<AtomKey>) -> Void)?>(nil)
+ let subscribing = LockSendable(Set<AtomKey>())
+ let unsubscribe = LockSendable<((Set<AtomKey>) -> Void)?>(nil)
8
9
// TODO: Use isolated synchronous deinit once it's available.
10
// 0371-isolated-synchronous-deinit
0 commit comments