Is there a good parallel data stream library in java

I am currently looking at a concurrency data flow model, both in Clojure and Groovy GPars. Are there any libraries written in pure Java that I can extract from?

I know that I can import or delegate to Clojure or Java, but I would like to have a nice and dedicated Java API, if possible.

+4
source share
2 answers

There is an Akka data stream module. The basic abstractions of the future / promises have a dedicated Java API, but the data flow module is designed to be used with Scala. But depending on your specific needs, Akka and promises futures may be enough. And they are very well designed, implemented and documented. There is even a book on Akka futures.

+3
source

df4j is literally a "data stream for Java." I think this is a good library, but mind you, I'm the author :).

+1
source

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


All Articles