No description
Find a file
2010-01-02 21:16:05 +01:00
akka-amqp Updated copyright header 2009-12-27 16:01:53 +01:00
akka-comet Updated copyright header 2009-12-27 16:01:53 +01:00
akka-core Fixed bug with not shutting down remote node cluster correctly 2010-01-02 11:03:06 +01:00
akka-fun-test-java moved all samples into its own subproject 2010-01-02 21:16:05 +01:00
akka-kernel Added registration of remote actors in declarative supervisor config + Fixed bug in remote client reconnect + Added Redis as backend for Chat sample + Added UUID utility + Misc minor other fixes 2009-12-30 08:36:24 +01:00
akka-persistence-cassandra Updated copyright header 2009-12-27 16:01:53 +01:00
akka-persistence-common Updated copyright header 2009-12-27 16:01:53 +01:00
akka-persistence-mongo Updated copyright header 2009-12-27 16:01:53 +01:00
akka-persistence-redis renamed Redis test from *Test to *Spec + removed requirement to link Actor only after start + refactored Chat sample to use mixin composition of Actor 2009-12-29 10:49:14 +01:00
akka-rest Updated copyright header 2009-12-27 16:01:53 +01:00
akka-samples moved all samples into its own subproject 2010-01-02 21:16:05 +01:00
akka-security Updated copyright header 2009-12-27 16:01:53 +01:00
akka-util Added registration of remote actors in declarative supervisor config + Fixed bug in remote client reconnect + Added Redis as backend for Chat sample + Added UUID utility + Misc minor other fixes 2009-12-30 08:36:24 +01:00
akka-util-java Updated copyright header 2009-12-27 16:01:53 +01:00
config Added registration of remote actors in declarative supervisor config + Fixed bug in remote client reconnect + Added Redis as backend for Chat sample + Added UUID utility + Misc minor other fixes 2009-12-30 08:36:24 +01:00
deploy fixed misc FIXMEs and TODOs 2009-12-27 08:24:11 +01:00
docs/images removed scaladoc 2009-12-27 16:02:45 +01:00
embedded-repo upgraded sjson to 0.3 to handle json serialization of classes loaded through an externally specified classloader 2009-12-29 10:17:54 +05:30
scripts moved all samples into its own subproject 2010-01-02 21:16:05 +01:00
.gitignore added eclipse files to .gitignore 2009-11-19 00:04:32 +01:00
akka.iml moved Cluster into akka-core + updated dbDispatch jars 2009-12-21 08:38:25 +01:00
changes.xml added tests for actor.forward 2009-12-26 14:18:14 +01:00
LICENSE moved all samples into its own subproject 2010-01-02 21:16:05 +01:00
pom.xml moved all samples into its own subproject 2010-01-02 21:16:05 +01:00
README.textile moved all samples into its own subproject 2010-01-02 21:16:05 +01:00

h1. Akka Project

h3. "http://akkasource.org":http://akkasource.org

Akka implements a unique hybrid of:
* The Actor model (Actors and Active Objects), which gives you:
** Concurrency (high-level and simple)
** Asynchronous, non-blocking and highly performant components.
** Supervision with "let-it-crash" semantics. Components are loosely coupled and restarted upon failure.
* Software Transactional Memory (STM).
* BASE and ACID persistence - Pluggable Eventually Consistent or ACID distributed scalable persistent storage.
* Remoting - Distributed services with supervision and error management
* REST (JAX-RS) and Comet bindings.
* Monitoring and Management

h1. Documentation

Akka has pretty thorough "reference documentation":http://doc.akkasource.org. Covering examples, APIs and configuration.

h1. Distribution

The latest distribution can be found in the "downloads section":https://github.com/jboner/akka/downloads

h1. Mailing List

If you have questions and/or feedback: please sign up to the Akka User mailing list: 
"http://groups.google.com/group/akka-user":http://groups.google.com/group/akka-user

h1.  Professional Support

Scalable Solutions AB is providing a variety of professional support packages for Akka, please visit their website for details: 
"http://scalablesolutions.se":http://scalablesolutions.se

h1. License

<pre>
This software is licensed under the Apache 2 license, quoted below.

Copyright 2009 Scalable Solutions AB <http://scalablesolutions.se>

Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except in compliance with the License. You may obtain a copy of
the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
License for the specific language governing permissions and limitations under
the License.
</pre>