标签: c# .net system.reactive
如何在C#Reactive扩展中模拟flatMapLatest。例如,我需要将此代码重写为C#:
screenChanged .flatMapLatest { return apiProvider.someApiCall() }
感谢。
答案 0 :(得分:2)
我不确定您对flatMapLatest的引用是什么,但.Select(_ => apiProvider.someApiCall()).Switch()可能是您正在寻找的内容。
flatMapLatest
.Select(_ => apiProvider.someApiCall()).Switch()