pekko/akka-docs/modules
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
..
code/docs/actor/mailbox make system.actorOf() non-blocking (and working), see #2031 2012-06-13 17:57:56 +02:00
camel-async-interact.png adding modules docs 2011-05-25 15:26:51 -07:00
camel-async-sequence.png adding modules docs 2011-05-25 15:26:51 -07:00
camel-custom-route.png adding modules docs 2011-05-25 15:26:51 -07:00
camel-pubsub.png adding modules docs 2011-05-25 15:26:51 -07:00
camel-pubsub2.png adding modules docs 2011-05-25 15:26:51 -07:00
camel.rst Update version to 2.1-SNAPSHOT 2012-03-05 10:50:54 +13:00
durable-mailbox.rst * 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
http.rst Added Akka Mist port and pointers to other community HTTP/REST projects to the HTTP docs 2012-05-21 14:40:18 +02:00
index.rst Cleaned up akka-docs, removed old and unused docs, fixed some errors etc. 2012-05-11 10:00:12 +02:00