Skip to content

Latest commit

 

History

History
23 lines (12 loc) · 707 Bytes

onerrorresumenext.md

File metadata and controls

23 lines (12 loc) · 707 Bytes

{% if book.isPdf %}

onErrorResumeNext

{% else %}

{% endif %}

Continues an observable sequence that is terminated normally or by an exception with the next observable sequence or Promise.

Arguments

  1. args (Array|arguments): Observable sequences to concatenate.

Returns

(Observable): An observable sequence that concatenates the source sequences, even if a sequence terminates exceptionally.

Example