File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
Sources/ComposableArchitecture Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -173,12 +173,6 @@ public final class Store<State, Action> {
173173 /// .task { await store.send(.task).finish() }
174174 /// ```
175175 ///
176- /// > Important: The ``Store`` is not thread safe and you should only send actions to it from the
177- /// > main thread. If you want to send actions on background threads due to the fact that the
178- /// > reducer is performing computationally expensive work, then a better way to handle this is to
179- /// > wrap that work in an ``Effect`` that is performed on a background thread so that the
180- /// > result can be fed back into the store.
181- ///
182176 /// - Parameter action: An action.
183177 /// - Returns: A ``StoreTask`` that represents the lifecycle of the effect executed when
184178 /// sending the action.
You can’t perform that action at this time.
0 commit comments