/** PURE_IMPORTS_START tslib,_Subscriber,_Observable,_util_subscribeTo PURE_IMPORTS_END */ import * as tslib_1 from "tslib"; import { Subscriber } from './Subscriber'; import { Observable } from './Observable'; import { subscribeTo } from './util/subscribeTo'; var SimpleInnerSubscriber = /*@__PURE__*/ (function (_super) { tslib_1.__extends(SimpleInnerSubscriber, _super); function SimpleInnerSubscriber(parent) { var _this = _super.call(this) || this; _this.parent = parent; return _this; } SimpleInnerSubscriber.prototype._next = function (value) { this.parent.notifyNext(value); }; SimpleInnerSubscriber.prototype._error = function (error) { this.parent.notifyError(error); this.unsubscribe(); }; SimpleInnerSubscriber.prototype._complete = function () { this.parent.notifyComplete(); this.unsubscribe(); }; return SimpleInnerSubscriber; }(Subscriber)); export { SimpleInnerSubscriber }; var ComplexInnerSubscriber = /*@__PURE__*/ (function (_super) { tslib_1.__extends(ComplexInnerSubscriber, _super); function ComplexInnerSubscriber(parent, outerValue, outerIndex) { var _this = _super.call(this) || this; _this.parent = parent; _this.outerValue = outerValue; _this.outerIndex = outerIndex; return _this; } ComplexInnerSubscriber.prototype._next = function (value) { this.parent.notifyNext(this.outerValue, value, this.outerIndex, this); }; ComplexInnerSubscriber.prototype._error = function (error) { this.parent.notifyError(error); this.unsubscribe(); }; ComplexInnerSubscriber.prototype._complete = function () { this.parent.notifyComplete(this); this.unsubscribe(); }; return ComplexInnerSubscriber; }(Subscriber)); export { ComplexInnerSubscriber }; var SimpleOuterSubscriber = /*@__PURE__*/ (function (_super) { tslib_1.__extends(SimpleOuterSubscriber, _super); function SimpleOuterSubscriber() { return _super !== null && _super.apply(this, arguments) || this; } SimpleOuterSubscriber.prototype.notifyNext = function (innerValue) { this.destination.next(innerValue); }; SimpleOuterSubscriber.prototype.notifyError = function (err) { this.destination.error(err); }; SimpleOuterSubscriber.prototype.notifyComplete = function () { this.destination.complete(); }; return SimpleOuterSubscriber; }(Subscriber)); export { SimpleOuterSubscriber }; var ComplexOuterSubscriber = /*@__PURE__*/ (function (_super) { tslib_1.__extends(ComplexOuterSubscriber, _super); function ComplexOuterSubscriber() { return _super !== null && _super.apply(this, arguments) || this; } ComplexOuterSubscriber.prototype.notifyNext = function (_outerValue, innerValue, _outerIndex, _innerSub) { this.destination.next(innerValue); }; ComplexOuterSubscriber.prototype.notifyError = function (error) { this.destination.error(error); }; ComplexOuterSubscriber.prototype.notifyComplete = function (_innerSub) { this.destination.complete(); }; return ComplexOuterSubscriber; }(Subscriber)); export { ComplexOuterSubscriber }; export function innerSubscribe(result, innerSubscriber) { if (innerSubscriber.closed) { return undefined; } if (result instanceof Observable) { return result.subscribe(innerSubscriber); } return subscribeTo(result)(innerSubscriber); } //# sourceMappingURL=innerSubscribe.js.map
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
observable | Folder | 0755 |
|
|
operators | Folder | 0755 |
|
|
scheduled | Folder | 0755 |
|
|
scheduler | Folder | 0755 |
|
|
symbol | Folder | 0755 |
|
|
testing | Folder | 0755 |
|
|
util | Folder | 0755 |
|
|
AsyncSubject.js | File | 1.59 KB | 0644 |
|
AsyncSubject.js.map | File | 1.14 KB | 0644 |
|
BehaviorSubject.js | File | 1.46 KB | 0644 |
|
BehaviorSubject.js.map | File | 930 B | 0644 |
|
InnerSubscriber.js | File | 1.04 KB | 0644 |
|
InnerSubscriber.js.map | File | 805 B | 0644 |
|
Notification.js | File | 2.7 KB | 0644 |
|
Notification.js.map | File | 2.17 KB | 0644 |
|
Observable.js | File | 3.95 KB | 0644 |
|
Observable.js.map | File | 3.13 KB | 0644 |
|
Observer.js | File | 494 B | 0644 |
|
Observer.js.map | File | 448 B | 0644 |
|
Operator.js | File | 37 B | 0644 |
|
Operator.js.map | File | 105 B | 0644 |
|
OuterSubscriber.js | File | 866 B | 0644 |
|
OuterSubscriber.js.map | File | 548 B | 0644 |
|
ReplaySubject.js | File | 4.36 KB | 0644 |
|
ReplaySubject.js.map | File | 3.55 KB | 0644 |
|
Rx.js | File | 7.66 KB | 0644 |
|
Rx.js.map | File | 4.49 KB | 0644 |
|
Scheduler.js | File | 602 B | 0644 |
|
Scheduler.js.map | File | 537 B | 0644 |
|
Subject.js | File | 5.25 KB | 0644 |
|
Subject.js.map | File | 3.97 KB | 0644 |
|
SubjectSubscription.js | File | 1.14 KB | 0644 |
|
SubjectSubscription.js.map | File | 868 B | 0644 |
|
Subscriber.js | File | 8.44 KB | 0644 |
|
Subscriber.js.map | File | 6.01 KB | 0644 |
|
Subscription.js | File | 5.09 KB | 0644 |
|
Subscription.js.map | File | 3.87 KB | 0644 |
|
config.js | File | 859 B | 0644 |
|
config.js.map | File | 513 B | 0644 |
|
innerSubscribe.js | File | 3.5 KB | 0644 |
|
innerSubscribe.js.map | File | 2.16 KB | 0644 |
|
types.js | File | 34 B | 0644 |
|
types.js.map | File | 99 B | 0644 |
|