No description
Find a file
Roland b60210362e make system.actorOf() non-blocking (and working), see #2031
- introducing RepointableActorRef, which starts out with an
  UnstartedActorCell which can cheaply be created; the Supervise()
  message will trigger child.activate() in the supervisor, which means
  that the actual creation (now with normal ActorCell) happens exactly
  in the right place and with the right semantics. Messages which were
  enqueued to the dummy cell are transferred atomically into the
  ActorCell (using normal .tell()), so message sends keep working
  exactly as they used to
- this enables getting rid of the brittle synchronization around
  RoutedActorRef by replacing that one with a RepointableActorRef
  subclass which creates RoutedActorCells upon activate(), with the nice
  benefit that there is no hurry then to get it right because the new
  cell is constructed “on the side”

misc fixes:

- InvalidMessageException is now actually enforced when trying to send
  “null”
- Mailboxes may be created without having an ActorCell, which can come
  in handy later, because the cell is only needed when this mailbox is
  going to be scheduled on some executor
- remove occurrences of Props(), which is equivalent to Props[Nothing],
  which is equivalent to «bug»
- add test case which verifies that context.actorOf is still synchronous
- plus all the stuff I have forgotten.
2012-06-13 17:57:56 +02:00
akka-actor/src/main make system.actorOf() non-blocking (and working), see #2031 2012-06-13 17:57:56 +02:00
akka-actor-tests/src/test make system.actorOf() non-blocking (and working), see #2031 2012-06-13 17:57:56 +02:00
akka-agent/src make system.actorOf() non-blocking (and working), see #2031 2012-06-13 17:57:56 +02:00
akka-camel/src Adding docs about creating TypedActor children 2012-05-25 00:49:45 +02:00
akka-cluster/src Add missing assert 2012-06-07 15:56:59 +02:00
akka-docs make system.actorOf() non-blocking (and working), see #2031 2012-06-13 17:57:56 +02:00
akka-durable-mailboxes make system.actorOf() non-blocking (and working), see #2031 2012-06-13 17:57:56 +02:00
akka-kernel/src/main Making most of the innards of microkernel.Main private 2012-05-23 16:31:13 +02:00
akka-remote/src make system.actorOf() non-blocking (and working), see #2031 2012-06-13 17:57:56 +02:00
akka-remote-tests/src Merge branch 'master' into wip-2175-problem-with-fault-injector-throttling-ban 2012-06-05 11:31:43 +02:00
akka-samples #2130 - Fixing unforunate naming in DiningHakkers 2012-05-25 17:15:59 +02:00
akka-sbt-plugin Update version to 2.1-SNAPSHOT 2012-03-05 10:50:54 +13:00
akka-slf4j/src Binary compat for SLF4J module 2012-05-24 01:16:50 +02:00
akka-testkit/src make system.actorOf() non-blocking (and working), see #2031 2012-06-13 17:57:56 +02:00
akka-transactor/src Preparing transactors for binary compat 2012-05-24 01:38:41 +02:00
akka-zeromq/src Binary compat work for the 0mq module 2012-05-24 12:34:18 +02:00
project Change to logback 1.0.4, see #2198 2012-06-07 20:40:14 +02:00
scripts Add script to run LogRoleReplace, see #2173 2012-06-04 13:35:08 +02:00
src/main/ls Update ls.implicit.ly sbt settings 2012-03-10 10:30:38 +13:00
.gitignore Removed code for tutorial, already removed in docs since duplicate in Typesafe/Akka getting started guide and template 2012-05-15 09:19:02 +02:00
LICENSE Updated license to 2012. 2012-02-15 20:27:27 +01:00
ls.sbt Use sbt 0.11.3. See #2087 2012-05-22 10:44:33 +02:00
README.textile Updated license to 2012. 2012-02-15 20:27:27 +01:00

h1. Akka

We believe that writing correct concurrent, fault-tolerant and scalable applications is too hard. Most of the time it's because we are using the wrong tools and the wrong level of abstraction.

Akka is here to change that.

Using the Actor Model together with Software Transactional Memory we raise the abstraction level and provide a better platform to build correct concurrent and scalable applications.

For fault-tolerance we adopt the "Let it crash" model which have been used with great success in the telecom industry to build applications that self-heal, systems that never stop.

Actors also provide the abstraction for transparent distribution and the basis for truly scalable and fault-tolerant applications.

Akka is Open Source and available under the Apache 2 License.

Learn more at "http://akka.io":http://akka.io.