You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[<System.Obsolete("Use AsyncSeq.ofObservableDiscarding. This function doesn't guarantee that the asynchronous sequence will return all values produced by the observable")>]
373
+
[<System.Obsolete("Use AsyncSeq.ofObservableDiscarding or AsyncSeq.ofObservableBuffered. This function doesn't guarantee that the asynchronous sequence will return all values produced by the observable")>]
Copy file name to clipboardExpand all lines: src/FSharp.Control.AsyncSeq/AsyncSeq.fsi
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -185,6 +185,9 @@ module AsyncSeq =
185
185
/// by the observable while the asynchronous sequence is blocked are discarded
186
186
///(this function doesn't guarantee that asynchronou ssequence will return
187
187
/// all values produced by the observable)
188
+
val ofObservableDiscarding : input:System.IObservable<'T>-> AsyncSeq<'T>
189
+
190
+
[<System.Obsolete("Use AsyncSeq.ofObservableDiscarding or AsyncSeq.ofObservableBuffered. This function doesn't guarantee that the asynchronous sequence will return all values produced by the observable")>]
188
191
val ofObservable : input:System.IObservable<'T>-> AsyncSeq<'T>
189
192
190
193
/// Converts asynchronous sequence to an IObservable<_>. When the client subscribes
0 commit comments