質問

My boss just sent me some links talking about using RxTx in .Net.

That's it! I immediately thought, "what the hell is RxTx?".

I've had a quick look about and it appears to be some kind of pattern used in Java.

Can someone, briefly, explain what the RxTx pattern is (from a .Net perspective)?

役に立ちましたか?

解決

Rx stands for .NET Reactive Extensions, linked from your second link:

The Reactive Extensions (Rx)...

...is a library to compose asynchronous and event-based programs using observable collections and LINQ-style query operators.

Tx seems to be an library written on top of Reactive Extensions, which allow you to query and monitor logs:

[Query] as if all the events were in a database, except no database is involved, the query happens directly on raw logs/traces or real-time sessions


Your confusion with Java seems to come from searching the web on RXTX, which is a serial and parallel communications library for Java, not really relevant to the subject at hand. :-)

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top