English 中文(简体)
追溯性延伸分解的三角点?
原标题:Tricks for debugging with Reactive Extensions?

我looking想如何使RX更容易腐化的想法。 如果一个来源通过编织商和编织商和出版等,就很难找到失败点。

到目前为止,我一直在从事与复杂的电子数字链类似的工作——在追踪方面插入多()项,在匿名的某个部分路上添加“名称”的现场,有时会gra光。 但是,我们或许有数百个生产者,或许还有成千上万的消费者,而且我们很难孤立问题。

你们用哪类trick来欺骗你的RX使用?

最佳回答
问题回答

A. 收集的一个重要trick滴 Rx bugs是按先令例外进行重新计算,这更可能使你获得一种真正的例外信息,而不是被重新抛弃:





相关问题
Split an IObservable and then combine after processing?

After experimenting with IObservables, I ve decided to test them for the processing of incoming messages over a message bus. Essentially I get an IObservable<Request> and the Request contains ...

Silverlight Toolkit DragDrop on WPF

Do Microsoft actually provide a build of Rx / Silverlight Toolkit DragDrop that "just works" on WPF? From what I can tell the Rx DragDrop stuff is only available in the SL Toolkit (not WPF). The SL ...

How can I update UI when Observable.Context is not available?

I have a WinFrom App, use synchronous method to download string from a url, and use Rx ToAsync Method to make it asynchronous and get the observable result, and when the result comes I show it on the ...

Reactive Extensions (Rx) + MVVM =?

One of the main examples being used to explain the power of Reactive Extensions (Rx) is combining existing mouse events into a new event representing deltas during mouse drag: var mouseMoves = from ...

热门标签