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: articles/reactive-sink.md
+3
Original file line number
Diff line number
Diff line change
@@ -9,3 +9,6 @@ The `Sink` operator uses the nested workflow to specify a reactive operation ove
9
9
10
10
> [!Tip]
11
11
> `Sink` operators are very useful to prevent side-effects from affecting the source sequence. Even if the inner sequence terminates early, or changes the timing of emitted values, these effects will not propagate to the outer sequence.
12
+
13
+
> [!Warning]
14
+
> If the source sequence terminates, the subscription to the nested sequence will be cancelled. If the reactive operation needs to be fully asynchronous and decoupled from the main sequence, consider using @subjects to process items in a separate branch of the workflow.
0 commit comments