aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/rxjs/dist/esm/internal/operators/timeout.js
diff options
context:
space:
mode:
authorPinapelz <yukais@pinapelz.com>2025-06-28 17:26:46 -0700
committerPinapelz <yukais@pinapelz.com>2025-06-28 17:43:56 -0700
commite4fa1e69e7ebfb627c7198fd1a9881e9327ec4d4 (patch)
tree06284a538a6008eca75051399e47db4e5d50301c /node_modules/rxjs/dist/esm/internal/operators/timeout.js
initial commit: scaffolding
Diffstat (limited to 'node_modules/rxjs/dist/esm/internal/operators/timeout.js')
-rw-r--r--node_modules/rxjs/dist/esm/internal/operators/timeout.js56
1 files changed, 56 insertions, 0 deletions
diff --git a/node_modules/rxjs/dist/esm/internal/operators/timeout.js b/node_modules/rxjs/dist/esm/internal/operators/timeout.js
new file mode 100644
index 0000000..3544461
--- /dev/null
+++ b/node_modules/rxjs/dist/esm/internal/operators/timeout.js
@@ -0,0 +1,56 @@
+import { asyncScheduler } from '../scheduler/async';
+import { isValidDate } from '../util/isDate';
+import { operate } from '../util/lift';
+import { innerFrom } from '../observable/innerFrom';
+import { createErrorClass } from '../util/createErrorClass';
+import { createOperatorSubscriber } from './OperatorSubscriber';
+import { executeSchedule } from '../util/executeSchedule';
+export const TimeoutError = createErrorClass((_super) => function TimeoutErrorImpl(info = null) {
+ _super(this);
+ this.message = 'Timeout has occurred';
+ this.name = 'TimeoutError';
+ this.info = info;
+});
+export function timeout(config, schedulerArg) {
+ const { first, each, with: _with = timeoutErrorFactory, scheduler = schedulerArg !== null && schedulerArg !== void 0 ? schedulerArg : asyncScheduler, meta = null, } = (isValidDate(config) ? { first: config } : typeof config === 'number' ? { each: config } : config);
+ if (first == null && each == null) {
+ throw new TypeError('No timeout provided.');
+ }
+ return operate((source, subscriber) => {
+ let originalSourceSubscription;
+ let timerSubscription;
+ let lastValue = null;
+ let seen = 0;
+ const startTimer = (delay) => {
+ timerSubscription = executeSchedule(subscriber, scheduler, () => {
+ try {
+ originalSourceSubscription.unsubscribe();
+ innerFrom(_with({
+ meta,
+ lastValue,
+ seen,
+ })).subscribe(subscriber);
+ }
+ catch (err) {
+ subscriber.error(err);
+ }
+ }, delay);
+ };
+ originalSourceSubscription = source.subscribe(createOperatorSubscriber(subscriber, (value) => {
+ timerSubscription === null || timerSubscription === void 0 ? void 0 : timerSubscription.unsubscribe();
+ seen++;
+ subscriber.next((lastValue = value));
+ each > 0 && startTimer(each);
+ }, undefined, undefined, () => {
+ if (!(timerSubscription === null || timerSubscription === void 0 ? void 0 : timerSubscription.closed)) {
+ timerSubscription === null || timerSubscription === void 0 ? void 0 : timerSubscription.unsubscribe();
+ }
+ lastValue = null;
+ }));
+ !seen && startTimer(first != null ? (typeof first === 'number' ? first : +first - scheduler.now()) : each);
+ });
+}
+function timeoutErrorFactory(info) {
+ throw new TimeoutError(info);
+}
+//# sourceMappingURL=timeout.js.map \ No newline at end of file
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage