문제

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