🇰🇷 Learn RxJS
Ctrlk
  • 시작하기
  • RxJS 배워보기
    • RxJS 개념
    • Operator(연산자)
      • Combination
      • Conditional
      • Creation
      • Error Handling
      • Multicasting
      • Filtering
      • Transformation
      • Utility
      • 전체 목록
    • Subjects
    • 레시피
Powered by GitBook
On this page
  • Contents (By Operator Type)
  • Additional Resources
Edit
  1. RxJS 배워보기

Operator(연산자)

A complete list of RxJS operators with clear explanations, relevant resources, and executable examples.

Prefer a complete list in alphabetical order?

Contents (By Operator Type)

  • Combination

    • combineAll

    • combineLatest ⭐

    • concat ⭐

    • concatAll

    • endWith

    • forkJoin

    • merge ⭐

    • mergeAll

    • pairwise

    • race

    • startWith ⭐

    • withLatestFrom ⭐

    • zip

  • Conditional

    • defaultIfEmpty

    • every

    • iif

    • sequenceequal

  • Creation

    • ajax ⭐

    • create

    • defer

    • empty

    • from ⭐

    • fromEvent

    • generate

    • interval

    • of ⭐

    • range

    • throw

    • timer

  • Error Handling

    • catch / catchError ⭐

    • retry

    • retryWhen

  • Filtering

    • audit

    • auditTime

    • debounce

    • debounceTime ⭐

    • distinct

    • distinctUntilChanged ⭐

    • distinctUntilKeyChanged

    • filter ⭐

    • find

    • first

    • ignoreElements

    • last

    • sample

    • single

    • skip

    • skipUntil

    • skipWhile

    • take ⭐

    • takeLast

    • takeUntil ⭐

    • takeWhile

    • throttle

    • throttleTime

  • Multicasting

    • multicast

    • publish

    • share ⭐

    • shareReplay ⭐

  • Transformation

    • buffer

    • bufferCount

    • bufferTime ⭐

    • bufferToggle

    • bufferWhen

    • concatMap ⭐

    • concatMapTo

    • expand

    • exhaustMap

    • groupBy

    • map ⭐

    • mapTo

    • mergeMap / flatMap ⭐

    • mergeScan

    • partition

    • pluck

    • reduce

    • scan ⭐

    • switchMap ⭐

    • switchMapTo

    • toArray

    • window

    • windowCount

    • windowTime

    • windowToggle

    • windowWhen

  • Utility

    • tap / do ⭐

    • delay

    • delayWhen

    • dematerialize

    • finalize / finally

    • let

    • repeat

    • repeatWhen

    • timeInterval

    • timeout

    • timeoutWith

    • toPromise

⭐ - commonly used

Additional Resources

  • What Are Operators? 📰 - Official Docs

  • What Operators Are 🎥 💵 - André Staltz

Previous시간 기반의 operator 비교NextCombination

Last updated 3 years ago