Commit graph

82 commits

Author SHA1 Message Date
Viktor Klang
42e8a4559e #1496 - Rename 'targets' to 'routees' 2011-12-17 16:33:29 +01:00
Roland
38ff479a39 redo section Identifying Actors for Java&Scala 2011-12-15 23:49:15 +01:00
Jonas Bonér
473dc7c89e Fixed broken link in "What is an Actor?" 2011-12-15 23:39:39 +01:00
Roland
fd4b4e3fb3 transparent remoting -> location transparency 2011-12-15 19:03:02 +01:00
Roland
1053dcbd2d correct points Henrik raised 2011-12-15 17:12:19 +01:00
Roland Kuhn
06a13d3eb1 Merge pull request #164 from jboner/wip-1169-actor-system-doc-rk
received okay by mail
2011-12-15 07:20:15 -08:00
Roland
6d72c9988a document deadLetter in actors concept 2011-12-15 16:19:08 +01:00
Roland
c6afb5ba2d polish some more and add remoting.rst 2011-12-15 15:09:16 +01:00
Jonas Bonér
ce296b0481 Misc additions to, and rewrites and formatting of, the documentation.
Signed-off-by: Jonas Bonér <jonas@jonasboner.com>
2011-12-15 14:26:17 +01:00
Roland
31591d4ec2 polish and add general/actors 2011-12-15 12:05:48 +01:00
Roland
0fa4f3504c first stab at actor-systems.rst 2011-12-15 01:49:02 +01:00
patriknw
d9e9efe2d7 Merge pull request #156 from jboner/wip-1504-config-comments-patriknw
Rewrite config comments
2011-12-14 08:47:19 -08:00
Viktor Klang
e959493e12 Enormous merge with master which probably led to the indirect unfortunate deaths of several kittens 2011-12-14 17:36:39 +01:00
Patrik Nordwall
c1826abee1 Merge branch 'master' into wip-1504-config-comments-patriknw
Conflicts:
	akka-actor/src/main/resources/reference.conf
2011-12-14 17:02:29 +01:00
Patrik Nordwall
8ffa85c590 DOC: Rewrite config comments. See #1505 2011-12-14 15:12:40 +01:00
Roland
5eedbdd69f rename ActorSystem.stop() to .shutdown() 2011-12-14 01:06:20 +01:00
Roland
9af58366f6 change default behavior to kill all children during preRestart
- adapted supervision doc accordingly
- had to override preRestart in two supervision tests, which is expected
2011-12-14 00:32:31 +01:00
Roland
7da61b6cc1 rename /null to /deadLetters, fixes #1492 2011-12-13 18:29:51 +01:00
Patrik Nordwall
31e2cb354f Updated to latest config release from typesafehub, v0.1.8 2011-12-13 15:28:14 +01:00
patriknw
2f8706ee3a Merge pull request #149 from jboner/wip-doc-dispatchers-scala-patriknw
DOC: Update Dispatchers (Scala) Chapter
2011-12-13 06:05:47 -08:00
Patrik Nordwall
7a17eb00bf DOC: Corrections of dispatcher docs from review. See #1471 2011-12-13 15:03:32 +01:00
Patrik Nordwall
0f41cee6de Split logging doc into scala and java. See #1467 2011-12-13 14:46:15 +01:00
Patrik Nordwall
4cf3a11833 Added with ActorLogging 2011-12-13 13:32:58 +01:00
Patrik Nordwall
0239106fcc DOC: Updated logging documentation. See #1467 2011-12-13 12:33:58 +01:00
Viktor Klang
bf01045779 Merged with current master 2011-12-13 10:18:15 +01:00
Viktor Klang
67c782f82c Renaming onResult to onSuccess and onException to onFailure 2011-12-12 20:09:26 +01:00
patriknw
02889404fe Merge pull request #143 from jboner/wip-1435-doc-java-actors-patriknw
Updated documentation of Actors (Java). See #1435
2011-12-09 04:32:24 -08:00
Patrik Nordwall
884dc43a7d DOC: Replace all akka.conf references. Fixes #1469
* Let us use :ref:`configuration` in all places to refer to the configuration.
2011-12-09 13:27:27 +01:00
Patrik Nordwall
ce128740ab Updated documentation of Actors (Java). See #1435
* Aligned the Java and Scala documentation for Actors
* Implemented hotswap samples in Java, and documented in same way as Scala docs
* Improved Actors (Scala) docs
* Fixed wrong preRestart and postRestart in UntypedActor
* Changed name of Dispatchers.fromConfig to newFromConfig and made it Java friendly
* Added ActorRef.ask with Timeout parameter in addition to the timeoutMillis
2011-12-08 19:30:04 +01:00
viktorklang
2b17415535 Merge pull request #141 from jboner/wip-1290-clarify-pitfalls
Clarifying some do's and dont's on Actors in the jmm docs
2011-12-08 06:16:27 -08:00
Viktor Klang
c2d9e70645 Fixing indentation and adding another common pitfall 2011-12-08 15:16:04 +01:00
Viktor Klang
8870c584d3 Clarifying some do's and dont's on Actors in the jmm docs 2011-12-08 14:59:39 +01:00
Viktor Klang
210fd096c5 Corrections based on review 2011-12-08 14:04:58 +01:00
Viktor Klang
d7771dc596 Elaborating on the message send semantics as per the ticket 2011-12-08 12:09:19 +01:00
Patrik Nordwall
bfa14a692c Merge branch 'master' into wip-1377-context-patriknw
Conflicts:
	akka-actor/src/main/scala/akka/actor/ActorCell.scala
	akka-actor/src/main/scala/akka/actor/ActorRef.scala
	akka-actor/src/main/scala/akka/dispatch/AbstractDispatcher.scala
	akka-actor/src/main/scala/akka/event/EventStream.scala
	akka-tutorials/akka-tutorial-first/src/main/java/akka/tutorial/first/java/Pi.java
	akka-tutorials/akka-tutorial-first/src/main/scala/Pi.scala
2011-12-07 07:49:34 +01:00
Patrik Nordwall
3204269f6a Cleanup of methods in Actor and ActorContext trait. See #1377
* Added JavaActorContext, UntypedActor.getContext
* implicit val context in Actor needs to be implicit to support forward,
it would be nice if it wasn't implicit because now I can't override context
in UntypedActor
* Removed implicit def system in Actor
* Removed implicit def defaultTimeout in Actor
* Removed receiveTimeout, children, dispatcher, become, unbecome, watch,
unwatch in Actor
* Removed corresponding as above from UntypedActor
* Removed implicit from dispatcher in ActorSystem
* Removed implicit def timeout in TypedActor
* Changed receiveTimeout to use Duration (in api)
* Changed many tests and samples to match new api
2011-12-06 09:50:16 +01:00
Roland
9d7597c728 Merge branch master into wip-ActorPath-rk
Had to make Davy Jones a bit more robust, i.e. put him into a different
system to guarantee survival until all messages are delivered.
2011-12-05 22:46:34 +01:00
Patrik Nordwall
c8a1a96310 Updated config documentation 2011-12-05 10:41:36 +01:00
Roland
e38cd19af9 Merge branch 'master' into wip-ActorPath-rk 2011-12-02 13:31:48 +01:00
Roland
cf020d708a rename top-level paths as per Jonas recommendation
/user
/system
/null
/temp
/remote
/service

multi-jvm tests are disabled for the time being until remote look-up has
been really implemented
2011-12-02 12:24:47 +01:00
Roland
afda539324 merge master into wip-ActorPath-rk 2011-11-29 21:52:18 +01:00
Patrik Nordwall
b56201ab7f Updated to latest config lib and changed how reference config files are loaded.
* Config lib 4f3a91f
* All reference files named reference.conf, all will be loaded
* Usage of ConfigFactor.load as default way
* Extensions use same config as ActorSystem.settings.config
2011-11-29 11:56:41 +01:00
Patrik Nordwall
19a78c0e58 Slf4jEventHandler should not format log message. See #1401
* Updated documentation with info about MDC.
* Updated documentation conf of logLevel.
* Updated documentation Logback 1.0.0.
2011-11-28 10:07:30 +01:00
Roland
96598704c8 Merge remote-tracking branch 'origin/master' into wip-ActorPath-rk 2011-11-24 16:06:47 +01:00
Patrik Nordwall
179399296e Modularize configuration. See #1361
* Split config reference to one for each module/extension.
* Adjusted signature of registerExtension to avoid race of extension init
* Moved Duration.dilated to testkit
* TestKitExtension
* RemoteExtension
* SerializationExtension
* Durable mailboxes extensions
* Fixed broken serialization bindings and added test
* Updated configuration documentation
* System properties akka.remote.hostname akka.remote.port replaced with akka.remote.server.hostname and akka.remote.server.port
* Adjustments of ActorSystem initialization. Still don't like the two-phase constructor/init flow. Very fragile for changes.

Review fixes. SerializationExtension
2011-11-23 20:31:58 +01:00
Roland
d40235f111 version 2 of the addressing spec 2011-11-22 15:15:57 +01:00
Roland
a2a09ec5a9 write addressing & path spec 2011-11-20 21:47:16 +01:00
Peter Vlugter
d04ad32588 Get rst docs building again and add some adjustments to the new cluster documentation 2011-11-09 10:40:22 +01:00
Jonas Bonér
7b485f659b Added documentation page on guaranteed delivery.
Signed-off-by: Jonas Bonér <jonas@jonasboner.com>
2011-10-28 11:01:24 +02:00
Roland
f75d16f710 fix small naming errors in supervision.rst 2011-10-17 17:59:04 +02:00