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
Observables are commonly done to fulfill this contract
Do Stream's adhere to it? And if not, it which point is it different?
Error or completion may happen only once. No more events expected, after one of these happens. Do Stream's act this way?
If we have a chain stream.op1(...).op2(...).op3(...), and let's assume there is a parallel execution at points 1 and 3, when error happens at 3. Execution in 1 may not be stopped, its fine. But, when execution at 1 is done, will result go into point 2, to start execution there, or, will the stream flow be stopped?
The text was updated successfully, but these errors were encountered:
Observables are commonly done to fulfill this contract
Do
Stream
's adhere to it? And if not, it which point is it different?Stream
's act this way?stream.op1(...).op2(...).op3(...)
, and let's assume there is a parallel execution at points 1 and 3, when error happens at 3. Execution in 1 may not be stopped, its fine. But, when execution at 1 is done, will result go into point 2, to start execution there, or, will the stream flow be stopped?The text was updated successfully, but these errors were encountered: