Is there such a structure as Twisted Matrix for C #?

A few years ago, I experimented with TwistedMatrix for Python and loved it. Unfortunately, my current project excludes the use of Python, since C # is the only valid language.

+3
source share
1 answer

If you are just looking for an asynchronous API to send data, WCF will work fine. Create asynchronous bindings when creating the endpoint.

The ServiceStack structure is also pretty close and a bit lighter than WCF. As you can see in the example using C #, you can easily execute async event handlers:

https://github.com/ServiceStack/ServiceStack/wiki/C%23-client

+3
source

Source: https://habr.com/ru/post/1758732/


All Articles