共用方式為


Observable.split<'T,'U1,'U2> 函式 (F#)

傳回兩個可預見值,這兩個可預見值會透過指定的函式來分割來源的觀測。 第一個會觸發觀察值的分隔器傳回 Choice1Of2 第二個會觸發觀察值 y的分隔器已傳回 Choice2Of2 針對每個訂閱的觀察者,分隔器被執行一次。 兩者也會傳播自來源引發的錯誤觀測,而且來源完成時這兩者也都完成。

命名空間/模組路徑:Microsoft.FSharp.Control.Observable

組件:FSharp.Core (在 FSharp.Core.dll 中)

// Signature:
Observable.split : ('T -> Choice<'U1,'U2>) -> IObservable<'T> -> IObservable<'U1> * IObservable<'U2>

// Usage:
Observable.split splitter source

參數

  • splitter
    型別:'T -> Choice<'U1,'U2>

    The function that takes an observation and transforms it into one of the two output Choice types.

  • source
    型別:IObservable<'T>

    輸入可預見值。

傳回值

可預見值的 Tuple。 The first triggers when splitter returns Choice1of2 and the second triggers when splitter returns Choice2of2.

備註

這個函式是名為 Split中 已編譯的組件。 如果從一個語言,F # 以外,或透過反映存取函式使用這個名稱。

平台

Windows 7、Windows Vista SP2、Windows XP SP3、Windows XP x64 SP2、Windows Server 2008 R2、Windows Server 2008 SP2、Windows Server 2003 SP2

版本資訊

F# 執行階段

支援版本:2.0、4.0

Silverlight

支援版本:3

請參閱

參考

Control.Observable 模組 (F#)

Microsoft.FSharp.Control 命名空間 (F#)