Wojciech Jurczyk
5a7a48824e
=doc Move formField directives' docs to a correct directory
2016-01-19 23:38:35 +01:00
Roland Kuhn
0db2c303ce
Merge pull request #19465 from wjur/wjur/form_fields_master
...
[WIP] #16651 Add formFieldMap, formFieldMultiMap & formFieldSeq Directives
2016-01-19 14:43:50 +01:00
Johan Andrén
e25dec5c53
=doc #19449 new migration guide for streams 2.0 to 2.4
2016-01-19 11:05:28 +01:00
Martynas Mickevičius
8c1350b0d4
Merge pull request #19505 from 2m/wip-stream-build-fix
...
Various streams build improvements
2016-01-19 11:17:11 +02:00
Martynas Mickevičius
7743aa9d0a
Various streams build improvements
...
* remove settings duplication between AkkaBuild and project specific .sbt files
* do not publish test projects
* run akka-http-core tests
* fix lambda sample project versions
* remove obsolete projects (streamAndHttp, httpParent, docsDev)
* exclude parsing project from unidoc
* update to the latest sbt
2016-01-18 18:16:30 +02:00
Konrad Malawski
1caf4b2502
Merge pull request #19476 from drewhk/wip-19441-java-optional-in-javadsl-drewhk
...
Wip 19441 java optional in javadsl drewhk
2016-01-18 13:54:27 +01:00
Tim Harper
8d94ef3294
=doc expound on SubFlow motivation / upgrade procedure
...
Incorporate Roland's comments from
https://groups.google.com/d/msg/akka-user/_blLOcIHxJ4/i1DOoylmEgAJ
2016-01-18 01:26:21 -07:00
Konrad Malawski
6f89251810
Merge pull request #19484 from bwmcadams/master
...
Corrected several misspellings of the word "losing".
2016-01-16 12:39:28 +01:00
Brendan McAdams
269a3b3647
Corrected several misspellings of the word "losing".
2016-01-15 20:20:15 -08:00
Sören Brunk
a39078d450
Fix a few typos in akka-stream docs
2016-01-15 17:45:09 +01:00
Endre Sándor Varga
57c1dfde8a
19441: Use Optional instead of Option in http core javadsl
2016-01-15 16:20:46 +01:00
Endre Sándor Varga
7a39063f2e
#19441 : Use Optional instead of Option in javadsl
2016-01-15 14:38:05 +01:00
Wojciech Jurczyk
edf0d6cb21
+htp: #16651 Add formFieldMap, formFieldMultiMap & formFieldSeq Directives
2016-01-14 23:16:00 +01:00
Konrad Malawski
f46f9edb17
=doc fix github link as in #19434
2016-01-14 13:13:02 +01:00
Konrad Malawski
5a18d43435
+doc #19429 initial merge of docs-dev and docs
2016-01-14 00:31:03 +01:00
Patrik Nordwall
c015f22824
!peq #19324 update persistence-query to stream 2.0.1
2016-01-11 18:27:35 +01:00
Johan Andrén
19c7017482
=clu #18577 Option to stop cluster client after no receptionist contact timeout
2016-01-11 14:02:12 +01:00
Jakub Kozłowski
5258707855
=doc #19355 fix typo in docs
2016-01-05 18:17:06 +01:00
Konrad Malawski
e0e84fab7b
Merge pull request #19314 from kryger/doc-akka-sbt-templates
...
=doc #19302 fix activator link in getting started docs
2015-12-30 14:51:20 +01:00
Lukasz Kryger
7aed6fb2ff
=doc #19302 fix activator link in getting started docs
2015-12-30 13:44:44 +00:00
Konrad Malawski
7229bb66dd
Merge pull request #19281 from RayRoestenburg/wip-RayRoestenburg/#19246
...
#19246 Auto and manual reset and `BackoffOptions`.
2015-12-29 23:01:47 +01:00
Raymond Roestenburg
2404a9da01
#19246 Auto and manual reset and BackoffOptions.
...
Also moved `TransparantExponentialBackoffSupervisor` to `akka.pattern` (renamed to `BackoffOnRestartSupervisor`)
2015-12-29 21:23:16 +02:00
Konrad Malawski
031147d322
Merge pull request #19273 from talp-traiana/per-19221-eager-plugin-initialization
...
=per #19221 Eager initialization of persistence plugins
2015-12-29 16:43:24 +01:00
Konrad Malawski
2bade93c31
Merge pull request #19305 from kryger/master
...
=doc Add the missing closing parenthesis
2015-12-28 15:01:59 +01:00
Lukasz Kryger
f181aa0334
Make it clear that AkkaAppPackaging is actually deprecated
...
Also, fix missing closing parenthesis.
2015-12-28 13:47:42 +00:00
Lukasz Kryger
739ef5e7d1
Fix link to SBT installation instructions
...
https://github.com/harrah/xsbt/wiki/Setup defunct, documentation moved to www.scala-sbt.org. Replaced the link with the best match I could find.
2015-12-28 13:01:29 +00:00
Tal Pressman
70130549df
=per #19221 Eager initialization of persistence plugins
...
* Initialization is performed during Persistence initialization, so for this to work the persistence extension should be specified under akka.extensions
2015-12-27 10:10:16 +02:00
Brian Drupieski
35d804b5ed
fix error in distributed pub sub documentation
2015-12-26 23:56:41 -05:00
Patrik Nordwall
290f402b79
Merge pull request #19211 from akka/wip-19201-max-pools-size-patriknw
...
=act #19201 improve configuration of thread-pool-executor
2015-12-21 09:50:42 +01:00
Patrik Nordwall
a1c3dbe307
=act #19201 improve configuration of thread-pool-executor
...
* The old implementation would cap the pool size (both corePoolSize
and maximumPoolSize) to max-pool-size, which is very confusing
becuase maximumPoolSize is only used when the task queue is bounded.
* That resulted in configuring core-pool-size-min and core-pool-size-max
was not enough, because it could be capped by the default max-pool-size.
* The new behavior is simply that maximumPoolSize is adjusted to not be
less than corePoolSize, but otherwise the config properties match the
underlying ThreadPoolExecutor implementation.
* Added a convenience fixed-pool-size property.
2015-12-21 09:50:02 +01:00
Roland Kuhn
377748bb0e
Merge pull request #19107 from jdevelop/jdevelop-quarantined-event-propagation-18758
...
#18758 Send appropriate events on remote actor system shutdown and quarantine
2015-12-20 20:31:04 +01:00
Eugene Dzhurinsky
fb763040f2
Add named exception to detect when a cluster node has been quarantined by others #18758
...
Publish appropriate events to the current ActorSystem event stream upon remote ActorSystem shutdown or when current ActorSystem is quarantined by the remote ActorSystem.
2015-12-20 13:02:19 -05:00
Konrad Malawski
ea4616c281
=rem #19228 make the default TLS version 1.2
...
TLS 1.2 should be preferred and we always have it available by virtue of requiring JDK8 for Akka 2.4.x.
See also https://blogs.oracle.com/java-platform-group/entry/java_8_will_use_tls
2015-12-18 13:11:12 +01:00
Roland Kuhn
2fbea1607b
Merge pull request #18855 from okthatsneat/Issue-18849_@okthatsneat_fix-ortography_persistence_doc
...
=doc #18849 Improve orthography & grammar
2015-12-14 17:41:03 +01:00
Philipp Hofmann
dff87ad04f
=doc #18849 Improve orthography & grammar
...
For all docs:
* remove consecutive duplicate words
* Improve use of commata
* Improve use of articles
* Improve consistent use of singular/plural
* Simplify run-on sentences
Review iterations:
* Integrate @rkuhn review points
- bring back the comma for the interjection
- ‘to not’ is not inverted if the infinitive form still follows
- Elegantly connect a run on sentence with a semicolon
- Correct semantic error
- Strictly monotonically preserve math expressions
- Use correct english futures
* Cross sync changes to files in scala, java & java-lambda documentation files using git diff -u | patch
2015-12-14 17:24:41 +01:00
Konrad Malawski
98ab4eb653
Merge pull request #19126 from akka/wip-16262-fix-flakey-udp-test-johanandren
...
=doc #16262 do not bind udp test to docker interfaces
2015-12-08 17:21:53 +01:00
Johan Andrén
c85b4d4a80
=doc #16262 do not bind udp test to docker interfaces
2015-12-08 16:47:42 +01:00
Tal Pressman
f610952ae7
PersistencePluginProxy
...
* Rename to PersistencePluginProxy.
* Watch target journal.
* Create PersistencePluginProxyExtension to enable eager initialization of
the persistence plugin.
* Add initialization via configuration.
* Add tests and documentation.
* Clearer log messages.
2015-12-01 17:12:33 +02:00
Konrad Malawski
e17b02e245
=doc fix optimised away imports
2015-11-27 11:56:46 +01:00
Konrad Malawski
f1953f9ee6
Merge pull request #19011 from ktoso/wip-relax-journal-tck-ktoso
...
=per,tck #18639 makes testing for rejections optional
2015-11-27 11:22:18 +01:00
Konrad Malawski
ec96c5ddb7
=per,tck #18639 introduce capability flags for journal features
2015-11-27 10:29:34 +01:00
Martin Grotzke
ca84c13c38
Add snapshot-store.plugin config to 2.3-2.4 migration docs
2015-11-25 13:55:37 +01:00
Konrad Malawski
06708f8f57
Merge pull request #18907 from johanandren/wip-18635-migration-guide-terminate-johanandren
...
=doc #18635 Added section about `ActorSystem.shutdown` being deprecated
2015-11-11 16:30:17 +01:00
Konrad Malawski
19594c6b94
Merge pull request #18909 from kukido/kukido-javadoc-fixes
...
=doc Fixes for genjavadoc
2015-11-11 14:09:08 +01:00
drewhk
48282fc753
Merge pull request #18729 from hseeberger/hseeberger-18575-publish-member-joined
...
Publish MemberJoined
2015-11-11 11:23:04 +01:00
drewhk
11bf8a67d0
Merge pull request #18543 from johanandren/wip-17695-api-for-sharding-state-retrieval-johanandren
...
+clu #17695 add a way to inspect the current sharding state
2015-11-11 11:19:50 +01:00
kukido
3cc3666724
=doc Fixes for genjavadoc
2015-11-11 00:29:44 -08:00
Johan Andrén
4f267d5931
=doc #18635 Added section about ActorSystem.shutdown being deprecated
2015-11-10 16:46:34 +01:00
Roland Kuhn
f1abaa1c5e
Merge pull request #18875 from ktoso/wip-akka.js-cherries-ktoso
...
Akka.js cherries to master
2015-11-07 18:01:24 +01:00
Andrea
cd3d68a77c
=act switch to java std lib ThreadLocalRandom
2015-11-06 14:04:33 +01:00