以下面的例子为例:
var ob = Observable.Interval(TimeSpan.FromSeconds(1)).StartWith(500).Replay(1).RefCount();
我在这里想要实现的是在任何给定时间“同步”获取序列中最新项目的值。这意味着像FirstAsync
这样的扩展无法弥补我的需求。
StartWith
和Replay
位确保始终存在值,并且在我的实际代码中需要RefCount
位来检测何时可以执行某些处理操作。< / p>
所以要模拟这个“任何给定时间”部分,让我们尝试在5秒后获得最新值:
Observable.Timer(TimeSpan.FromSeconds(5)).Subscribe(x =>
{
// Try to get latest value from "ob" here.
});
因此,延迟时间为5秒,我需要从序列中获取值5
,这些是我迄今为止尝试过的,但没有成功:
ob.First()
- 返回500 ob.Latest().Take(1)
- 与上述相同ob.MostRecent(-1).First()
- 与上述相同ob.MostRecent(-1)
- 给我一个IEnumerable<long>
充满“500”ob.Last()
- 永远不会返回,因为它正在等待序列完成,它永远不会ob.Latest().Last()
- 与上述相同ob.ToTask().Result
- 与上述相同ob.ToEnumerable()
- 与上述相同ob.MostRecent().Last()
与上述相同似乎没有太多资源可以让人们真正做到这一点。我能找到的最接近的是:“Rx: operator for getting first and most recent value from an Observable stream”,但它毕竟不是同步调用(仍在使用订阅),所以它对我不起作用。
是否有人知道这是否真的可行?
答案 0 :(得分:3)
指出为什么你的代码可能没有像你期望的那样工作
var ob = Observable.Interval(TimeSpan.FromSeconds(1)).StartWith(500).Replay(1).RefCount();
//Note at this point `ob` has never been subscribed to,
// so the Reference-count is 0 i.e. has not be connected.
Observable.Timer(TimeSpan.FromSeconds(5)).Subscribe(x =>
{
// Try to get latest value from "ob" here.
//Here we make our first subscription to the `ob` sequence.
// This will connect the sequence (invoke subscribe)
// which will
// 1) invoke StartWith
// 2) invoke onNext(500)
// 3) invoke First()
// 4) First() will then unsubscribe() as it has the single value it needs
// 5) The refCount will now return to 0
// 6) The sequence will be unsubscribed to.
ob.First().Dump();
//Any future calls like `ob.First()` will thus always get the value 500.
});
你想要的可能是什么
var ob = Observable.Interval(TimeSpan.FromSeconds(1))
.Publish(500);
var connection = ob.Connect();
//Note at this point `ob` has never been subscribed to, so the ReferenceCount is 0 i.e. has not be connected.
var subscription = Observable.Timer(TimeSpan.FromSeconds(5)).Subscribe(x =>
{
// Try to get latest value from "ob" here.
ob.First().Dump();
});
//Sometime later
subscription.Dispose();
connection.Dispose()
但是,你真的不想将同步通话与Rx混合。您通常也不想在订阅中订阅(因为.First()
是订阅)。您可能想要做的是获取最新价值,并将其存放在某个地方。使用.First()
只是一个滑坡。你可能会更好地写一些像
var subscription = Observable.Timer(TimeSpan.FromSeconds(5))
.SelectMany(_=>ob.Take(1))
.Subscribe(x =>
{
//Do something with X here.
x.Dump();
});
答案 1 :(得分:0)
你需要做这样的事情:
var ob = Observable.Interval(TimeSpan.FromSeconds(1)).StartWith(500);
var latestAndThenTheRest =
Observable
.Create<long>(o =>
{
var bs = new BehaviorSubject<long>(1);
var s1 = ob.Subscribe(bs);
var s2 = bs.Subscribe(o);
return new CompositeDisposable(s1, s2);
});
这里你唯一需要考虑的是ob
必须是一个热门的观察对象才有意义。如果它很冷,那么每个订阅者都会获得ob
序列开头的全新订阅。
答案 2 :(得分:0)
稍微澄清一下,感谢@ LeeCampbell的回答。
什么不起作用:
var ob = Observable.Interval(TimeSpan.FromSeconds(1)).StartWith(500).Replay(1).RefCount();
Observable.Timer(TimeSpan.FromSeconds(5)).Subscribe(x =>
{
ob.First().Dump();
// This gives you 500.
// Because this is the first time any one subscribes to the observable,
// so it starts right here and gives you the initial value.
});
实际上会起作用:
var ob = Observable.Interval(TimeSpan.FromSeconds(1)).StartWith(500).Replay(1).RefCount();
ob.Subscribe(); // Subscribe to start the above hot observable immediately.
Observable.Timer(TimeSpan.FromSeconds(5)).Subscribe(x =>
{
ob.First().Dump();
// This would give you either 3 or 4, depending on the speed and timing of your computer.
});
答案 3 :(得分:-1)
我不确定这个答案对你有帮助吗,但你有没有看过BehaviorSubject?它是一个可以记住其最新价值的IObservable。它有点像常规变量和可观察变量的组合。
否则,为什么不订阅&#39; ob&#39;并自己将最新值存储在变量中?