Skip to content

Latest commit

 

History

History
32 lines (17 loc) · 1016 Bytes

File metadata and controls

32 lines (17 loc) · 1016 Bytes

{% if book.isPdf %}

doOnError

{% else %}

{% endif %}

Invokes an action upon exceptional termination of the observable sequence.

This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline.

Arguments

  1. onError (Function): Function to invoke upon exceptional termination of the observable sequence.
  2. [thisArg] (Any): Object to use as this when executing callback.

Returns

(Observable): The source sequence with the side-effecting behavior applied.

Example

Using a function

Using a thisArg