試圖構建一個可觀察的流,它將有條件地從兩個源中讀取。基於用戶選擇的文件流或當前會話的內存中的流。 我有一個下拉,用戶可以選擇下列之一: Current //in-memory stream contains entries (error, warning, trace, debug) as they happen for the current session
Error //error.log
我想輪詢一些布爾變量,直到它變爲false。我想編寫一個Observable,它發出單個值並完成,只有當特定變量爲false時。 這裏是我特地用: let waitTask = Observable.interval(250)
.do(() => console.log("DEBUG: Waiting for sync to finish."))
.takeWhile(()