Code coverage report for cjs/operators/buffer.js

Statements: 96.43% (54 / 56)      Branches: 62.5% (10 / 16)      Functions: 100% (18 / 18)      Lines: 100% (48 / 48)      Ignored: none     

All files » cjs/operators/ » buffer.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103    1 1   1   2   51   1   1                     1 17     1 1 17   17     1 17     1     1 1   1 17   17 17 17     1 34     1 7     1 8     1 21 21 21     1     1 1   1 17   17 17         1 21     1 3     1 4     1     1  
'use strict';
 
exports.__esModule = true;
exports['default'] = buffer;
 
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
 
function _inherits(subClass, superClass) { Iif (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); Eif (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
 
function _classCallCheck(instance, Constructor) { Iif (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }
 
var _Subscriber3 = require('../Subscriber');
 
var _Subscriber4 = _interopRequireDefault(_Subscriber3);
 
/**
 * buffers the incoming observable values until the passed `closingNotifier` emits a value, at which point
 * it emits the buffer on the returned observable and starts a new buffer internally, awaiting the
 * next time `closingNotifier` emits
 *
 * @param {Observable<any>} closingNotifier an observable, that signals the buffer to be emitted from the returned observable
 * @returns {Observable<T[]>} an observable of buffers, which are arrays of values
 */
 
function buffer(closingNotifier) {
    return this.lift(new BufferOperator(closingNotifier));
}
 
var BufferOperator = (function () {
    function BufferOperator(closingNotifier) {
        _classCallCheck(this, BufferOperator);
 
        this.closingNotifier = closingNotifier;
    }
 
    BufferOperator.prototype.call = function call(subscriber) {
        return new BufferSubscriber(subscriber, this.closingNotifier);
    };
 
    return BufferOperator;
})();
 
var BufferSubscriber = (function (_Subscriber) {
    _inherits(BufferSubscriber, _Subscriber);
 
    function BufferSubscriber(destination, closingNotifier) {
        _classCallCheck(this, BufferSubscriber);
 
        _Subscriber.call(this, destination);
        this.buffer = [];
        this.add(closingNotifier._subscribe(new BufferClosingNotifierSubscriber(this)));
    }
 
    BufferSubscriber.prototype._next = function _next(value) {
        this.buffer.push(value);
    };
 
    BufferSubscriber.prototype._error = function _error(err) {
        this.destination.error(err);
    };
 
    BufferSubscriber.prototype._complete = function _complete() {
        this.destination.complete();
    };
 
    BufferSubscriber.prototype.flushBuffer = function flushBuffer() {
        var buffer = this.buffer;
        this.buffer = [];
        this.destination.next(buffer);
    };
 
    return BufferSubscriber;
})(_Subscriber4['default']);
 
var BufferClosingNotifierSubscriber = (function (_Subscriber2) {
    _inherits(BufferClosingNotifierSubscriber, _Subscriber2);
 
    function BufferClosingNotifierSubscriber(parent) {
        _classCallCheck(this, BufferClosingNotifierSubscriber);
 
        _Subscriber2.call(this, null);
        this.parent = parent;
    }
 
    //# sourceMappingURL=buffer.js.map
 
    BufferClosingNotifierSubscriber.prototype._next = function _next(value) {
        this.parent.flushBuffer();
    };
 
    BufferClosingNotifierSubscriber.prototype._error = function _error(err) {
        this.parent.error(err);
    };
 
    BufferClosingNotifierSubscriber.prototype._complete = function _complete() {
        this.parent.complete();
    };
 
    return BufferClosingNotifierSubscriber;
})(_Subscriber4['default']);
 
module.exports = exports['default'];
//# sourceMappingURL=buffer.js.map