-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(elementAt): will now properly unsubscribe when it completes or er…
…rors (#2501) Force unsubscription logic in elementAt, when resulting Observable completes or errors, so that all resources are disposed as fast as possible, even if next operator in chain does not unsubscribe reliably when given complete or error notification.
- Loading branch information
Showing
3 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
///<reference path='../../typings/index.d.ts'/> | ||
import * as Rx from '../../dist/cjs/Rx'; | ||
|
||
export function doNotUnsubscribe<T>(ob: Rx.Observable<T>): Rx.Observable<T> { | ||
return ob.lift(new DoNotUnsubscribeOperator()); | ||
} | ||
|
||
class DoNotUnsubscribeOperator<T, R> implements Rx.Operator<T, R> { | ||
call(subscriber: Rx.Subscriber<R>, source: any): any { | ||
return source.subscribe(new DoNotUnsubscribeSubscriber(subscriber)); | ||
} | ||
} | ||
|
||
class DoNotUnsubscribeSubscriber<T> extends Rx.Subscriber<T> { | ||
unsubscribe() {} // tslint:disable-line no-empty | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters