move Akka to reactive

While it can (and is used for distributed apps) it's defining features are reactive
[http://doc.akka.io/docs/akka/2.5.1/intro/what-is-akka.html](http://doc.akka.io/docs/akka/2.5.1/intro/what-is-akka.html)
This commit is contained in:
Moshe-Immerman
2017-05-16 06:04:51 +02:00
committed by GitHub
parent 8572934ab9
commit 38744de50d

View File

@ -309,7 +309,6 @@ A curated list of awesome Java frameworks, libraries and software.
*Libraries and frameworks for writing distributed and fault-tolerant applications.*
* [Akka](http://akka.io) - Toolkit and runtime for building concurrent, distributed, and fault tolerant event-driven applications.
* [Apache Storm](http://storm.apache.org/) - Realtime computation system.
* [Apache ZooKeeper](http://zookeeper.apache.org/) - Coordination service with distributed configuration, synchronization, and naming registry for large distributed systems.
* [Atomix](http://atomix.io/atomix/) - Fault-tolerant distributed coordination framework.
@ -676,6 +675,7 @@ A curated list of awesome Java frameworks, libraries and software.
*Libraries for developing reactive applications.*
* [Akka](http://akka.io) - Toolkit and runtime for building concurrent, distributed, and fault tolerant event-driven applications.
* [Reactive Streams](https://github.com/reactive-streams/reactive-streams-jvm/) - Provide a standard for asynchronous stream processing with non-blocking backpressure.
* [Reactor](http://projectreactor.io/) - Library for building reactive fast-data applications.
* [RxJava](https://github.com/ReactiveX/RxJava) - Library for composing asynchronous and event-based programs using observable sequences from the JVM.