RxJS Subscribable

2020-10-12 16:47 更新

可觀察的界面

interface Subscribable<T> {  subscribe(observer?: PartialObserver<T>): Unsubscribable }

類的實現(xiàn)

  • Observable

  • ConnectableObservable

  • GroupedObservable

  • Subject

  • BehaviorSubject
  • ReplaySubject
  • AsyncSubject

方法

訂閱() 4重載...subscribe(next: null, error: null, complete: () => void): Unsubscribable

參量 類型
下一個 類型:null
錯誤 類型:null
完成 類型:() => void

returnsUnsubscribable``subscribe(next: null, error: (error: any) => void, complete?: () => void): Unsubscribable

參量 類型
下一個 類型:null
錯誤 類型:(error: any) => void
完成 可選的。默認值為undefined類型:() => void

returnsUnsubscribable``subscribe(next: (value: T) => void, error: null, complete: () => void): Unsubscribable

參量 類型
下一個 類型:(value: T) => void
錯誤 類型:null
完成 類型:() => void

returnsUnsubscribable``subscribe(next?: (value: T) => void, error?: (error: any) => void, complete?: () => void): Unsubscribable

參量 類型
下一個 可選的。默認值為undefined類型:(value: T) => void
錯誤 可選的。默認值為undefined。類型:(error: any) => void。
完成 可選的。默認值為undefined。類型:() => void。

returnsUnsubscribable

以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號