2012-02-10 16:02:37 +01:00
|
|
|
#####################################
|
|
|
|
|
# Akka ZeroMQ Reference Config File #
|
|
|
|
|
#####################################
|
2012-01-16 10:48:23 +01:00
|
|
|
|
2012-02-21 14:39:08 -06:00
|
|
|
# This is the reference config file that contains all the default settings.
|
2012-01-16 10:48:23 +01:00
|
|
|
# Make your edits/overrides in your application.conf.
|
|
|
|
|
|
|
|
|
|
akka {
|
|
|
|
|
|
|
|
|
|
zeromq {
|
|
|
|
|
|
2012-01-19 13:06:22 +01:00
|
|
|
# The default timeout for a poll on the actual zeromq socket.
|
|
|
|
|
poll-timeout = 100ms
|
|
|
|
|
|
2012-02-10 16:02:37 +01:00
|
|
|
# Timeout for creating a new socket
|
|
|
|
|
new-socket-timeout = 5s
|
|
|
|
|
|
2012-01-16 10:48:23 +01:00
|
|
|
socket-dispatcher {
|
|
|
|
|
# A zeromq socket needs to be pinned to the thread that created it.
|
2012-09-26 10:56:25 +02:00
|
|
|
# Changing this value results in weird errors and race conditions within
|
|
|
|
|
# zeromq
|
2012-02-07 09:50:03 +01:00
|
|
|
executor = thread-pool-executor
|
2012-01-16 10:48:23 +01:00
|
|
|
type = "PinnedDispatcher"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|