@reactivex/ix-esnext-esm
Version:
The Interactive Extensions for JavaScript
75 lines (73 loc) • 2.39 kB
JavaScript
import { IterableX } from '../iterablex';
import { RefCountList } from './_refcountlist';
import { create } from '../create';
class PublishedBuffer extends IterableX {
constructor(source) {
super();
this._stopped = false;
this._source = source;
this._buffer = new RefCountList(0);
}
// eslint-disable-next-line complexity
*_getIterable(i) {
try {
while (1) {
let hasValue = false;
let current = {};
if (i >= this._buffer.count) {
if (!this._stopped) {
try {
const next = this._source.next();
hasValue = !next.done;
// eslint-disable-next-line max-depth
if (hasValue) {
current = next.value;
}
}
catch (e) {
this._error = e;
this._stopped = true;
}
}
if (this._stopped) {
if (this._error) {
throw this._error;
}
else {
break;
}
}
if (hasValue) {
this._buffer.push(current);
}
}
else {
hasValue = true;
}
if (hasValue) {
yield this._buffer.get(i);
}
else {
break;
}
// eslint-disable-next-line no-param-reassign
i++;
}
}
finally {
this._buffer.done();
}
}
[Symbol.iterator]() {
this._buffer.readerCount++;
return this._getIterable(this._buffer.count)[Symbol.iterator]();
}
}
export function publish(selector) {
return function publishOperatorFunction(source) {
return selector
? create(() => selector(publish()(source))[Symbol.iterator]())
: new PublishedBuffer(source[Symbol.iterator]());
};
}
//# sourceMappingURL=publish.mjs.map