--
>>>>>>>>>> Read the docs: http://akka.io/docs/
>>>>>>>>>> Check the FAQ: http://doc.akka.io/docs/akka/current/additional/faq.html
>>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user
---
You received this message because you are subscribed to the Google Groups "Akka User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email to akka-user+...@googlegroups.com.
To post to this group, send email to akka...@googlegroups.com.
Visit this group at https://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and stop receiving emails from it, send an email to akka-user+unsubscribe@googlegroups.com.
To post to this group, send email to akka...@googlegroups.com.
Visit this group at https://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.
The question on "Does it completely replace the initial actor conf example file" sounds a bit weird - it is the same file, artery simply has it's own configuration section: http://doc.akka.io/docs/akka/2.4/general/configuration.html#akka-remote
"Each Akka module has a reference configuration file with the default values."
include "akka-actor.conf"
include "akka-agent.conf"
include "akka-camel.conf"
include "akka-cluster.conf"
include "akka-cluster-metrics.conf"
include "akka-cluster-sharding.conf"
include "akka-cluster-tools.conf"
include "akka-distributed-data.conf"
include "akka-http.conf"
include "akka-multinode-testkit.conf"
include "akka-persistence.conf"
include "akka-remote.conf"include "akka-testkit.conf"
akka {
actor {
serializers {
...
"Each Akka module has a reference configuration file with the default values."So... What I have done is "literally" take the configuration examples as individual files and "included" them ALL within application.conf
Oh :-) You don't need to do that. The defaults are loaded... by default :-)include "akka-actor.conf"
include "akka-agent.conf"
include "akka-camel.conf"[...]
--
>>>>>>>>>> Read the docs: http://akka.io/docs/
>>>>>>>>>> Check the FAQ: http://doc.akka.io/docs/akka/current/additional/faq.html
>>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user
---
You received this message because you are subscribed to the Google Groups "Akka User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email to akka-user+unsubscribe@googlegroups.com.
To post to this group, send email to akka...@googlegroups.com.
Visit this group at https://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and stop receiving emails from it, send an email to akka-user+...@googlegroups.com.
To post to this group, send email to akka...@googlegroups.com.
Visit this group at https://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.
I actually think doing it manually like this will end up being way more confusing...The reference.conf / application.conf style is rather well established in Akka or Scala apps and provides minimal boilerplate.Reference is defaults "application always wins".Who "wins" is well known here and also well documented in typesafe-config, please read its docs.
Given;
application.conf includes these 2 lines only.
include "1.conf"
include "2.conf"
If there are any duplicate settings / paths.....
* 2.conf will always win or
* included files are always loaded in order they appear (so 1 is loaded and then 2) and...
* the last added duplicate path / setting is always the setting used.
--
>>>>>>>>>> Read the docs: http://akka.io/docs/
>>>>>>>>>> Check the FAQ: http://doc.akka.io/docs/akka/current/additional/faq.html
>>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user
---
You received this message because you are subscribed to the Google Groups "Akka User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email to akka-user+...@googlegroups.com.