Can twisted be implemented in Java?

I remember reading that the following functions lead to the development of interesting frameworks / libraries in Python: (I read an article from http://www.python.org/workshops/2002-02/papers/09/index.htm )

  • A simple class model that facilitates inheritance.
  • Dynamic typing, which means that the code should take less.
  • Built-in memory management.

Java is statically compiled and has a garbage collector. It is interesting whether its cool model can be called simple, however, bearing in mind the above points, I have the following doubts: -

  • Is there a counterpart in Python in Java Java Twisted (which is just as powerful)?
+3
source share
3 answers

Netty is an event-based networking environment written in Java, so it is likely to be equivalent to Twisted. The functions are relatively similar to Twisted, and it seems powerful (I have no experience from my own experience). It looks like it is still actively supported. You will need to study it yourself to really understand if it meets your requirements.

+6
source

Apache Mina v2.0 is similar to Twisted.

+3
source

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


All Articles