Skip to content

Latest commit

 

History

History
36 lines (21 loc) · 619 Bytes

File metadata and controls

36 lines (21 loc) · 619 Bytes

Notifies the observer of the end of the sequence.

{% if book.isPdf %}

var observer = Rx.Observer.create(
  x => console.log(`onNext: ${x}`),
  e => console.log(`onError: ${e}`),
  () => console.log('onCompleted'));

observer.onCompleted();
// => onCompleted

{% else %}

Example

{% endif %}

{% if book.isPdf %}

{% else %}

Location

  • rx.js

{% endif %}