Understanding RxJS Error Handling

Поділитися
Вставка
  • Опубліковано 26 жов 2024

КОМЕНТАРІ • 8

  • @ThomasBurleson
    @ThomasBurleson 5 років тому +2

    Really well done. Love the talk about `retryWhen()` and conditional logic with `catchError()`.

  • @harperfaith108
    @harperfaith108 5 років тому +1

    Thank you Joe for explanation about rxjs error handling ,it was quite interesting slides , good to know about rest of methods to handle errors.

  • @MarkT
    @MarkT 3 роки тому

    A classic. Significant instructional. Pleased to see some js is looking like Ruby begin-rescue-ensure blocks! Ruby-lang has the advantage of a deep, structured Exception class structure. Which is aligned across libraries (gems). So Ruby is still a more 'reliable' implementation server-side. Thanks again!

  • @marvin674
    @marvin674 4 роки тому +4

    What is that Queens background music?

  • @artemeelemann317
    @artemeelemann317 4 роки тому +1

    Nice talk! Unfortunately did not see here method of catching error and continuing without complete or repeating from the start (

  • @LxAU
    @LxAU 4 роки тому

    Good presentation, but please reconsider the use of *lyricised* background music in future videos-it’s incredibly distracting when trying to concentrate on the content!

  • @notarealhandle123
    @notarealhandle123 3 роки тому

    Incorrect explanation of onErrorResumeNext. It only works, if you apply it for a separate observable, typically used with switchMap, or else the stream halts. On its own it doesn't do much good. People wonder about errors first of all - how to skip an error value and move on. And you did not really cover that.