RxJS Subscribable

2020-10-12 16:47 更新

可觀(guān)察的界面

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

類(lèi)的實(shí)現(xiàn)

  • Observable

  • ConnectableObservable

  • GroupedObservable

  • Subject

  • BehaviorSubject
  • ReplaySubject
  • AsyncSubject

方法

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

參量 類(lèi)型
下一個(gè) 類(lèi)型:null
錯(cuò)誤 類(lèi)型:null
完成 類(lèi)型:() => void

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

參量 類(lèi)型
下一個(gè) 類(lèi)型:null
錯(cuò)誤 類(lèi)型:(error: any) => void
完成 可選的。默認(rèn)值為undefined類(lèi)型:() => void

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

參量 類(lèi)型
下一個(gè) 類(lèi)型:(value: T) => void
錯(cuò)誤 類(lèi)型:null
完成 類(lèi)型:() => void

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

參量 類(lèi)型
下一個(gè) 可選的。默認(rèn)值為undefined類(lèi)型:(value: T) => void
錯(cuò)誤 可選的。默認(rèn)值為undefined。類(lèi)型:(error: any) => void。
完成 可選的。默認(rèn)值為undefined。類(lèi)型:() => void

returnsUnsubscribable

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

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)