Sha256: f0bfa888d1b28bcfce01c9e67ebb17f090b5c26e0a3d214e285124c56d668508

Contents?: true

Size: 1.3 KB

Versions: 49

Compression:

Stored size: 1.3 KB

Contents

/** PURE_IMPORTS_START ._Subscriber PURE_IMPORTS_END */
var __extends = (this && this.__extends) || function (d, b) {
    for (var p in b)
        if (b.hasOwnProperty(p))
            d[p] = b[p];
    function __() { this.constructor = d; }
    d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
import { Subscriber } from './Subscriber';
/**
 * We need this JSDoc comment for affecting ESDoc.
 * @ignore
 * @extends {Ignored}
 */
export var InnerSubscriber = /*@__PURE__*/ (/*@__PURE__*/ function (_super) {
    __extends(InnerSubscriber, _super);
    function InnerSubscriber(parent, outerValue, outerIndex) {
        _super.call(this);
        this.parent = parent;
        this.outerValue = outerValue;
        this.outerIndex = outerIndex;
        this.index = 0;
    }
    InnerSubscriber.prototype._next = function (value) {
        this.parent.notifyNext(this.outerValue, value, this.outerIndex, this.index++, this);
    };
    InnerSubscriber.prototype._error = function (error) {
        this.parent.notifyError(error, this);
        this.unsubscribe();
    };
    InnerSubscriber.prototype._complete = function () {
        this.parent.notifyComplete(this);
        this.unsubscribe();
    };
    return InnerSubscriber;
}(Subscriber));
//# sourceMappingURL=InnerSubscriber.js.map

Version data entries

49 entries across 49 versions & 4 rubygems

Version Path
ilog-0.4.1 node_modules/rxjs/_esm5/InnerSubscriber.js
ilog-0.4.0 node_modules/rxjs/_esm5/InnerSubscriber.js
ilog-0.3.3 node_modules/rxjs/_esm5/InnerSubscriber.js
govuk_publishing_components-18.0.0 node_modules/rxjs/_esm5/InnerSubscriber.js
govuk_publishing_components-17.21.0 node_modules/rxjs/_esm5/InnerSubscriber.js
govuk_publishing_components-17.20.0 node_modules/rxjs/_esm5/InnerSubscriber.js
govuk_publishing_components-17.19.1 node_modules/rxjs/_esm5/InnerSubscriber.js
govuk_publishing_components-17.19.0 node_modules/rxjs/_esm5/InnerSubscriber.js
govuk_publishing_components-17.18.0 node_modules/rxjs/_esm5/InnerSubscriber.js
govuk_publishing_components-17.17.0 node_modules/rxjs/_esm5/InnerSubscriber.js
govuk_publishing_components-17.16.0 node_modules/rxjs/_esm5/InnerSubscriber.js
govuk_publishing_components-17.15.0 node_modules/rxjs/_esm5/InnerSubscriber.js
govuk_publishing_components-17.14.0 node_modules/rxjs/_esm5/InnerSubscriber.js
govuk_publishing_components-17.13.0 node_modules/rxjs/_esm5/InnerSubscriber.js
govuk_publishing_components-17.12.2 node_modules/rxjs/_esm5/InnerSubscriber.js
govuk_publishing_components-17.12.1 node_modules/rxjs/_esm5/InnerSubscriber.js
govuk_publishing_components-17.12.0 node_modules/rxjs/_esm5/InnerSubscriber.js
govuk_publishing_components-17.11.0 node_modules/rxjs/_esm5/InnerSubscriber.js
govuk_publishing_components-17.10.0 node_modules/rxjs/_esm5/InnerSubscriber.js
govuk_publishing_components-17.9.0 node_modules/rxjs/_esm5/InnerSubscriber.js