rxjs APIs
- Observable
- Subject
- of
- BehaviorSubject
- Subscription
- throwError
- from
- combineLatest
- fromEvent
- merge
- timer
- interval
- ReplaySubject
- forkJoin
- EMPTY
- defer
- concat
- OperatorFunction
- iif
- Observer
- map
- NEVER
- zip
- firstValueFrom
- noop
- filter
- lastValueFrom
- catchError
- isObservable
- switchMap
- tap
- identity
- pipe
- empty
- asyncScheduler
- take
- ObservableInput
- startWith
- AsyncSubject
- asapScheduler
- MonoTypeOperatorFunction
- partition
- Subscriber
- Unsubscribable
- debounceTime
- delay
- range
- SubscriptionLike
- SchedulerLike
- retry
- toArray
- bindNodeCallback
- animationFrameScheduler
- distinctUntilChanged
- first
- takeUntil
- mergeMap
- skip
- withLatestFrom
- shareReplay
- mergeScan
- TimeoutError
- finalize
- concatMap
- using
- last
- race
- skipWhile
- scan
- ObservedValueOf
- share
- takeWhile
- repeat
- observeOn
- endWith
- pluck
- throttleTime
- scheduled
- timeout
- TeardownLogic
- bindCallback
Other Related APIs
- rxjs#fromEvent
- rxjs#combineLatest
- rxjs#BehaviorSubject
- rxjs#map
- rxjs#switchMap
- rxjs#distinctUntilChanged
- @angular/core#Component
- @angular/core#Input
- @angular/core#EventEmitter
- @angular/core#Output
- @angular/core#ViewEncapsulation
- @angular/core#ChangeDetectionStrategy
- @angular/core#Optional
- @angular/cdk/overlay#CdkScrollable
rxjs#throttleTime TypeScript Examples
The following examples show how to use
rxjs#throttleTime.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: back-top.component.ts From alauda-ui with MIT License | 6 votes |
isDisplayed$ = combineLatest([
this.target$$.asObservable().pipe(
map(target => this.getTarget(target)),
switchMap(target =>
fromEvent(target, 'scroll').pipe(
// use default scheduler
throttleTime(50, undefined, { leading: true, trailing: true }),
map(() => this.getTargetScrollTop(target)),
),
),
),
this.visibilityHeight$$,
]).pipe(
map(([scrollTop, visibilityHeight]) => scrollTop >= visibilityHeight),
distinctUntilChanged(),
);