Commit graph

130 commits

Author SHA1 Message Date
Viktor Klang
c2ac041fa6 #2036 - Adding how-do-i section on General in the docs 2012-05-09 15:52:02 +02:00
Viktor Klang
942d926058 Cleaning up a bit after a bit of havoc... 2012-05-04 00:27:44 +02:00
Havoc Pennington
0d6dec1c4b rename a doc section to refer to multiple ActorSystem
this better tells people when to read this section.
2012-05-03 10:21:24 -04:00
Havoc Pennington
3e68bef199 move the docs on config file prior to docs on coding custom config
Assume people first try just editing files, and only write custom
code if they are getting fancy.
2012-05-03 10:18:44 -04:00
Havoc Pennington
340b4dd8a5 in docs, discuss using "include" instead of coding custom config 2012-05-03 10:16:32 -04:00
Havoc Pennington
c3124f45eb move custom config example in Java into a code file 2012-05-03 10:10:25 -04:00
Havoc Pennington
ab7ea72200 move the new doc section on custom config to a better place
there was already some mention of it so move the longer
mention to just after the initial mention
2012-05-03 10:00:14 -04:00
Havoc Pennington
7ba3ccff47 Move reference config listings to bottom of the page
There were some docs, then some huge listings, then
more docs; I'm guessing people often don't scroll
down past the huge listings so move them to the
bottom.
2012-05-03 09:44:31 -04:00
Havoc Pennington
d4c838a505 add docs on loading configuration from custom place 2012-05-03 09:44:31 -04:00
viktorklang
b54d125662 Adding documentation about working around the REPL bug. 2012-04-27 12:24:32 +03:00
Heiko Seeberger
0cbee22bf1 closes #2013: Typos in the docs, using parens for arity-0 methods which are not referentially transparent 2012-04-24 08:01:32 +02:00
Roland
0c4b2a11ae document blocking nature of system.actorOf, see #2007 2012-04-23 12:26:29 +02:00
viktorklang
6bd4ea1710 Clarifying actor jmm rules 2012-04-18 12:46:58 +03:00
Roland
d8b0fcf629 clarify typographic error in general/remoting.rst 2012-04-03 12:48:03 +02:00
Viktor Klang
96e5682732 #1957 - Adding warning section regarding jarjar and akka configuration 2012-04-03 00:12:12 +02:00
Peter Vlugter
1af8695fef Merge branch 'master' of github.com:akka/akka 2012-03-06 22:08:07 +13:00
Mike Krumlauf
c852f49cce Update akka-docs/general/supervision.rst 2012-03-05 20:34:55 -05:00
Peter Vlugter
d7fe025fa2 Update docs theme 2012-03-06 13:20:00 +13:00
Roland
87275c40cf Merge branch 'wip-config-docs-∂π' 2012-03-05 21:47:39 +01:00
Roland
a864681147 clarify restart sequence in supervision.rst 2012-03-05 21:47:19 +01:00
Viktor Klang
74ad848983 Consistently using 'terminate' in supervision docs 2012-03-05 21:05:36 +01:00
Roland
56ce7a0ecd rewrite configuration.rst, see #1823 and #1838 2012-03-05 15:39:46 +01:00
Adam Lesperance
4a47ce8ba3 Remove unneeded word "that". 2012-02-21 13:35:07 -06:00
Viktor Klang
445ffa3a7d #1842 - Documenting initial behavior 2012-02-21 12:03:14 +01:00
Roland
72ab6429c2 document AllForOneStrategy better, see #1851 2012-02-21 08:51:51 +01:00
Bruce Mitchener
3d90f480d0 Fix spelling errors. 2012-02-14 19:50:01 +07:00
viktorklang
216513933a Merge pull request #323 from jboner/wip-1808-timeout-patriknw
Replace akka.actor.timeout with specfic settings. See #1808
2012-02-13 04:52:30 -08:00
Viktor Klang
49f101d186 #1813 - Adding clarification regarding JMM and Futures 2012-02-12 19:20:00 +01:00
Patrik Nordwall
e017aeef08 Replace akka.actor.timeout with specfic settings. See #1808
* ActorTimeout (akka.actor.timeout) was used to all sorts of things.
* TestKit default-timeout
* TypedActor timeout for non void methods
* Transactor coordinated-timeout
* ZeroMQ new-socket-timeout
* And in various tests
2012-02-10 16:07:17 +01:00
Jonas Bonér
51a218b87f Fixes ticket #1809 - Harmonize configuration option names.
Signed-off-by: Jonas Bonér <jonas@jonasboner.com>
2012-02-09 20:40:09 +01:00
Roland
76bba1f530 remote deploy docs & provider.getExternalAddressFor (see #1765) 2012-02-03 09:16:18 +01:00
Roland
4fb0858e55 remote cleanup: include feedback from Viktor and Patrik
- re-label Client/Server to Inbound/Outbound for netty settings
  description
- move to just using exactly one class loader for all reflective
  activities of the ActorSystem, which is either the context class
  loader or the one which loaded the ActorSystem’s class; document that
  putting Akka on boot class path will not work
- be more careful with initializing the Client- and ServerBootstrap
- rename Port to DesiredPortFromConfig to discourage misuse
- write test for NettySettings
- various small fixes
2012-01-30 11:57:24 +01:00
Roland
6afed30d43 add Java FSM example and reST, see #1428 2012-01-24 14:32:17 +01:00
Roland
ee5ae1068b Merge branch 'wip-1485-fsm-docs-∂π' 2012-01-24 09:35:35 +01:00
Roland
b2c63062fd document EmptyLocalActorRef, see #1605 2012-01-23 17:56:52 +01:00
patriknw
d21d03207f Merge pull request #247 from jboner/wip-1711-supervisorStrategy-patriknw
FaultHandler as method in Actor instead of in Props. See #1711
2012-01-23 08:40:59 -08:00
Patrik Nordwall
9e15d2062b Renamed more things to SupervisorStrategy. Updated more docs. See #1711 2012-01-23 17:18:49 +01:00
Patrik Nordwall
66e0a7cf0b Moved definition of fault handler from Props to overridable method supervisorStrategy in Actor. See #1711
* New trait SupervisorStrategy for TypedActors
* Adjustments of docs
* Updated tests
2012-01-23 13:49:19 +01:00
Patrik Nordwall
05d4a6ed38 DOC: Extension sample for application specific settings. See #1702
* Added sample and documentation for how to create extension for application specific config
* Simplified java usage of ExtensionIdProvider, more aligned with how it is done in scala
2012-01-20 11:30:33 +01:00
Viktor Klang
149fbea5a7 Updating Copyright as per #1660 2012-01-19 18:21:06 +01:00
Patrik Nordwall
1b4983f865 DOC: fixed minor path err 2012-01-18 10:10:42 +01:00
Patrik Nordwall
4dd5e9612b Migration kit and start of migration documentation. See #1406.
* Documentation of migration kit
* Documentation of some of the changes
* akka-actor-migration module containing GlobalActorSystem, OldXxx classes and some implicit conversions
* Tried migration of WebWords sample
* Tried migration of akka-samples/async-workers
* Tried migration of akka-samples-trading
2012-01-12 13:27:58 +01:00
Viktor Klang
f76e085226 Correct wording 2011-12-30 18:51:07 +01:00
Roland
2fbef5b5ce various documentation improvements
- document DeathWatch
- actorOf vs. actorFor
2011-12-28 13:13:39 +01:00
Roland
a917260488 add examples for printing out configuration 2011-12-26 19:01:37 +01:00
Roland
f510293d59 add picture showing remote deployment 2011-12-22 16:44:50 +01:00
Roland
1a5843b7db add picture displaying relations between ref/path/cell/actor 2011-12-22 15:51:18 +01:00
Henrik Engstrom
419b69438f Added copyright header to all samples in docs. Fixes #1531 2011-12-19 11:07:59 +01:00
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