pekko/akka-docs
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
..
_sphinx Inadventently deleted akka-intellij-code-style.jar 2012-05-24 23:39:13 +02:00
additional sun.misc.Unsafe should be loaded through boot delegation instead 2012-05-17 08:09:59 +02:00
cluster Added implementation of the LEAVE command for a cluster node. 2012-06-01 16:49:50 +02:00
common #2168 - Exposing more Netty options in remtoe config 2012-06-01 21:29:47 +02:00
dev Merge branch 'wip-testconductor-∂π' 2012-05-22 16:22:10 +02:00
general Adding missing slash 2012-06-07 00:46:01 +03:00
images Adding a doc diagram for the Test Conductor Extension 2012-05-08 13:56:24 +02:00
intro Update docs to reflect that there isn't 0 deps for akka-actor 2012-05-29 09:06:03 +02:00
java Change to logback 1.0.4, see #2198 2012-06-07 20:40:14 +02:00
modules make system.actorOf() non-blocking (and working), see #2031 2012-06-13 17:57:56 +02:00
project Added Typesafe to the 'sponsors' doc page 2012-05-21 17:01:21 +02:00
scala make system.actorOf() non-blocking (and working), see #2031 2012-06-13 17:57:56 +02:00
.history Tests are green with new Futures, consider this a half-way-there marker 2011-12-11 00:40:52 +01:00
conf.py * Add Circuit Breaker to akka.pattern for general use. Circuit breaker implementation as described by Michael T. Nygard in Release It!. Fixes #1734 2012-06-01 08:24:47 -04:00
index.rst Make Java come before Scala in the docs 2012-04-24 13:49:21 +02:00
Makefile Add options for creating epub output for the documentation 2012-05-17 22:58:57 +02:00
more.png Added docs for durable mailboxes, plus filtered out replication tests 2011-05-17 16:34:07 +02:00