Microsoft® Certified Solutions Developer
Pinned Loading
-
RxJS operator which will emit when t...
RxJS operator which will emit when the source 'value' has changed or when some 'delay' time has passed since last emit (even if 'value' has not changed) 1import { Observable, MonoTypeOperatorFunction, empty, of } from 'rxjs';
2import { flatMap } from 'rxjs/operators';
34/** Will emit when the source 'value' has changed or when some 'delay' time has passed since last emit (even if 'value' has not changed) */
5export function throttleUntilChanged<T>(delay: number): MonoTypeOperatorFunction<T> {
-
Promise scheduler based on RxJS sche...
Promise scheduler based on RxJS schedulers. Included busyPromise method typically useful along with ngBusy lib 1import { observeOn } from "rxjs/operators";
2import { of, SchedulerLike, queueScheduler, asyncScheduler, asapScheduler, animationFrameScheduler } from 'rxjs';
34export enum ScheduleType {
5Queue,
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.