Patrik Nordwall
817c3c5ee7
Improved priority mailbox usage, and documentation. See #1458
2011-12-21 20:34:46 +01:00
Patrik Nordwall
c4401f1ca8
Changed so that the configured FQCN of the mailboxType must be a MailboxType, not the Mailbox. See #1458
2011-12-21 19:37:18 +01:00
Patrik Nordwall
6eb7e1d438
Rename dispatcherFactory to dispatchers in ActorSystem. See #1458
2011-12-21 19:07:54 +01:00
Patrik Nordwall
df260f8939
Improvements based on feedback. See #1458
2011-12-21 19:02:06 +01:00
Patrik Nordwall
1bce4c39c3
Fixed failing/ignored tests. See #1458
2011-12-21 14:00:32 +01:00
Patrik Nordwall
f772b0183e
Initial commit of dispatcher key refactoring, for review. See #1458
...
* Changed signatures and constructor of MessageDispatcherConfigurator
* Changed Dispatchers.lookup, keep configurators instead of dispatchers
* Removed most of the Dispatchers.newX methods, newDispatcher is still there because of priority mailbox
* How should we make it easy to configure priority mailbox?
* Changed tons tests
* Documentation and ScalaDoc is not updated yet
* Some tests in ActorModelSpec are temporary ignored due to failure
2011-12-21 13:27:50 +01:00
Henrik Engstrom
92bb4c5afb
Merge pull request #180 from jboner/1529-hardcoded-value-he
...
1529 removed hardcoded timeout value from SGFCR
2011-12-21 03:20:57 -08:00
Viktor Klang
a9cce25ee3
Fixing racy FutureSpec test
2011-12-21 12:05:19 +01:00
Henrik Engstrom
1a8e755738
Minor updates after further feedback. See #1529
2011-12-21 11:46:39 +01:00
Henrik Engstrom
dac0beb01b
Updates based on feedback - use of abstract member variables specific to the router type. See #1529
2011-12-21 10:03:26 +01:00
Peter Vlugter
a624c74045
Remove .tags_sorted_by_file
2011-12-21 14:53:17 +13:00
Henrik Engstrom
0dc161c800
Initial take on removing hardcoded value from SGFCR. See #1529
2011-12-20 19:57:42 +01:00
Jonas Bonér
1b3974cfb7
Merge branch 'master' of github.com:jboner/akka
2011-12-20 19:13:17 +01:00
Jonas Bonér
9801ec641d
Removed old unused config files in multi-jvm tests.
...
Signed-off-by: Jonas Bonér <jonas@jonasboner.com>
2011-12-20 19:12:54 +01:00
patriknw
f6f52c455d
Merge pull request #178 from jboner/wip-1512-dispatcher-shutdown-timeout-patriknw
...
Move dispatcher-shutdown-timeout to dispatcher config. See #1512 .
2011-12-20 04:51:36 -08:00
Patrik Nordwall
f591a315ae
Fixed typo
2011-12-20 13:50:30 +01:00
Patrik Nordwall
60f45c72f6
Move dispatcher-shutdown-timeout to dispatcher config. See #1512 .
2011-12-20 13:40:51 +01:00
Viktor Klang
f3406acae3
Merge branch 'master' of github.com:jboner/akka
2011-12-20 12:33:17 +01:00
Henrik Engstrom
1a5d2a4cee
Merge pull request #174 from jboner/1495-routees-message-he
...
Added functionality for a router client to retrieve the current routees ...
2011-12-20 02:22:34 -08:00
Viktor Klang
49b3bac69c
Removing UnhandledMessageException and fixing tests
2011-12-20 11:19:06 +01:00
Henrik Engstrom
c92f3c5ca2
Merge branch 'master' into 1495-routees-message-he
...
Conflicts:
akka-actor/src/main/scala/akka/routing/Routing.scala
2011-12-20 11:18:37 +01:00
Viktor Klang
9a9e800b9f
Merge branch 'master' into wip-1539-publish-unhandled-eventstream-√
2011-12-20 11:01:33 +01:00
Viktor Klang
7fc19ec99d
Merge branch 'master' of github.com:jboner/akka
2011-12-20 10:58:31 +01:00
Viktor Klang
a4568d6da6
Merging in wip-1510-make-testlatch-awaitable-√
2011-12-20 10:58:17 +01:00
Viktor Klang
634147d090
Cleaning up some of the Java samples and adding sender to the UnhandledMessage
2011-12-20 10:52:27 +01:00
viktorklang
73f2ae4a69
Merge pull request #173 from jboner/wip-improve-remote-logging-√
...
Adding general badassery
2011-12-20 01:51:25 -08:00
Viktor Klang
2adb042bf7
Publish UnhandledMessage to EventStream
2011-12-20 10:38:37 +01:00
patriknw
8997376449
Merge pull request #176 from jboner/wip-1484-config-mailboxtype-patriknw
...
Make MailboxType implementation configurable. See #1484
2011-12-20 01:18:51 -08:00
Patrik Nordwall
d87d9e2e80
Additional feedback, thanks.
2011-12-20 10:12:40 +01:00
Patrik Nordwall
fb510d5018
Unwrap InvocationTargetException in ReflectiveAccess.createInstance. See #1555
2011-12-20 09:59:08 +01:00
Patrik Nordwall
5fd40e53ca
Updates after feedback
2011-12-20 09:56:29 +01:00
Patrik Nordwall
e82ea3c8b0
DOC: Extracted sample for explicit and implicit timeout with ask. Correction of akka.util.Timeout
2011-12-20 08:12:20 +01:00
Peter Vlugter
8da41aaef9
Add copyright header to agent examples
2011-12-20 11:07:59 +13:00
Peter Vlugter
00c7fe5bbb
Merge pull request #172 from jboner/migrate-agent
...
Migrate agent to scala stm
2011-12-19 13:19:31 -08:00
Patrik Nordwall
83b08b20d9
Added CustomMailbox for user defined mailbox implementations with ActorContext instead of ActorCell.
...
* Mailbox is still there, with ActorCell, for internal use.
* Implemented durable mailboxes with CustomMailbox
2011-12-19 21:46:37 +01:00
Patrik Nordwall
61813c6635
Make MailboxType implementation configurable. See #1484
...
* Added mailboxType property to dispatcher config
* Changed durable mailboxes to use this
* Updated docs for durable mailboxes
2011-12-19 21:41:02 +01:00
Henrik Engstrom
f67a50074b
Removed racy test. See #1495
2011-12-19 18:35:48 +01:00
Henrik Engstrom
5aa4784ea2
Updated code after feedback; the actual ActorRef's are returned instead of the name of them. See #1495
2011-12-19 16:35:35 +01:00
Patrik Nordwall
6e3c2cb682
Enable parallel execution of tests. See #1548
2011-12-19 16:30:48 +01:00
Viktor Klang
84090ef4e7
Bootstrapping the ContextClassLoader of the calling thread to init Remote to be the classloader for the remoting
2011-12-19 15:21:40 +01:00
Viktor Klang
c904fd3913
Making TestLatch Awaitable and fixing tons of tests
2011-12-19 15:05:33 +01:00
Henrik Engstrom
3ff779cabd
Added functionality for a router client to retrieve the current routees of that router. See #1495
2011-12-19 14:20:33 +01:00
Viktor Klang
47c1be6b42
Adding FIXME comments to unprotected casts to ActorSystemImpl (4 places)
2011-12-19 14:04:32 +01:00
Viktor Klang
b7b1ea57e7
Tweaking general badassery
2011-12-19 13:49:43 +01:00
Viktor Klang
0f3a720f3e
Adding general badassery
2011-12-19 13:35:10 +01:00
Henrik Engstrom
419b69438f
Added copyright header to all samples in docs. Fixes #1531
2011-12-19 11:07:59 +01:00
Peter Vlugter
a144c35c41
Add docs and tests for java api for agents. Fixes #1545
2011-12-19 19:03:04 +13:00
Peter Vlugter
70d8cd3c51
Migrate agent to scala-stm. See #1281
2011-12-19 17:27:14 +13:00
Viktor Klang
c5ef5ad6ce
#1475 - implement mapTo for Java
2011-12-17 17:16:41 +01:00
Viktor Klang
42e8a4559e
#1496 - Rename 'targets' to 'routees'
2011-12-17 16:33:29 +01:00