Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

buffer.js 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. "use strict";
  2. var __extends = (this && this.__extends) || (function () {
  3. var extendStatics = function (d, b) {
  4. extendStatics = Object.setPrototypeOf ||
  5. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  6. function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
  7. return extendStatics(d, b);
  8. }
  9. return function (d, b) {
  10. extendStatics(d, b);
  11. function __() { this.constructor = d; }
  12. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  13. };
  14. })();
  15. Object.defineProperty(exports, "__esModule", { value: true });
  16. var OuterSubscriber_1 = require("../OuterSubscriber");
  17. var subscribeToResult_1 = require("../util/subscribeToResult");
  18. function buffer(closingNotifier) {
  19. return function bufferOperatorFunction(source) {
  20. return source.lift(new BufferOperator(closingNotifier));
  21. };
  22. }
  23. exports.buffer = buffer;
  24. var BufferOperator = (function () {
  25. function BufferOperator(closingNotifier) {
  26. this.closingNotifier = closingNotifier;
  27. }
  28. BufferOperator.prototype.call = function (subscriber, source) {
  29. return source.subscribe(new BufferSubscriber(subscriber, this.closingNotifier));
  30. };
  31. return BufferOperator;
  32. }());
  33. var BufferSubscriber = (function (_super) {
  34. __extends(BufferSubscriber, _super);
  35. function BufferSubscriber(destination, closingNotifier) {
  36. var _this = _super.call(this, destination) || this;
  37. _this.buffer = [];
  38. _this.add(subscribeToResult_1.subscribeToResult(_this, closingNotifier));
  39. return _this;
  40. }
  41. BufferSubscriber.prototype._next = function (value) {
  42. this.buffer.push(value);
  43. };
  44. BufferSubscriber.prototype.notifyNext = function (outerValue, innerValue, outerIndex, innerIndex, innerSub) {
  45. var buffer = this.buffer;
  46. this.buffer = [];
  47. this.destination.next(buffer);
  48. };
  49. return BufferSubscriber;
  50. }(OuterSubscriber_1.OuterSubscriber));
  51. //# sourceMappingURL=buffer.js.map