rxjs-fruits icon indicating copy to clipboard operation
rxjs-fruits copied to clipboard

subscription will make the belt move, take should stop the belt

Open andreElrico opened this issue 3 years ago • 1 comments

https://www.rxjs-fruits.com/take

take will complete and therefore unsubscribe => belt should stop moving then.

I believe same is true with from ? :/

andreElrico avatar Oct 01 '20 07:10 andreElrico

@andreElrico It completes the input Observable, not the output observable you receive after the take operation. You subscribe to this output observable, not to the input observable.

Sebi2020 avatar Jan 16 '22 14:01 Sebi2020