🇰🇷 Learn RxJS
  • 시작하기
  • RxJS 배워보기
    • RxJS 개념
      • RxJS 입문
      • map, pluck, mapTo를 이용해 stream 변형하기
      • 시간 기반의 operator 비교
    • Operator(연산자)
      • 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
      • Multicasting
        • publish
        • multicast
        • share
        • shareReplay
      • Filtering
        • audit
        • auditTime
        • debounce
        • debounceTime
        • distinct
        • distinctUntilChanged
        • distinctUntilKeyChanged
        • filter
        • find
        • first
        • ignoreElements
        • last
        • sample
        • single
        • skip
        • skipUntil
        • skipWhile
        • take
        • takeLast
        • takeUntil
        • takeWhile
        • throttle
        • throttleTime
      • Transformation
        • buffer
        • bufferCount
        • bufferTime
        • bufferToggle
        • bufferWhen
        • concatMap
        • concatMapTo
        • exhaustMap
        • expand
        • 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
        • timeInterval
        • timeout
        • timeoutWith
        • toPromise
      • 전체 목록
    • Subjects
      • AsyncSubject
      • BehaviorSubject
      • ReplaySubject
      • Subject
    • 레시피
      • 영어 타자 연습 게임
      • Battleship 게임
      • 버블 게임
      • 카레이싱 게임
      • 점을 잡아라!
      • 클릭좌 게임
      • 날아라 새 게임
      • 게임 루프
      • 가로 스크롤 표시 바
      • HTTP 폴링
      • 잠금화면
      • 매트릭스 디지털 비 효과
      • 기억력 게임
      • 지뢰 찾기
      • 점프 게임
      • Progress 바
      • 저장 표시
      • 똑똑한 카운터
      • 스톱워치
      • 스페이스 인베이더
      • 새로고침하려면 스와이프하세요
      • 2인용 탱크 게임
      • 테트리스
      • 미리 입력
      • 이미지 덮기 게임
Powered by GitBook
On this page
Edit on GitHub
  1. RxJS 배워보기
  2. Operator(연산자)

Error Handling

PrevioustimerNextcatch / catchError

Last updated 3 years ago

Errors are an unfortunate side-effect of development. These operators provide effective ways to gracefully handle errors and retry logic, should they occur.

Contents

  • ⭐

⭐ - commonly used

catch / catchError
retry
retryWhen