Fixing #648 Adding support for configuring Netty backlog in akka config

This commit is contained in:
Viktor Klang 2011-02-07 10:31:05 +01:00
parent 6a93610bda
commit 810f6cfca9
3 changed files with 5 additions and 1 deletions

View file

@ -547,6 +547,7 @@ class NettyRemoteServer(serverModule: NettyRemoteServerModule, val host: String,
val pipelineFactory = new RemoteServerPipelineFactory(name, openChannels, loader, serverModule)
bootstrap.setPipelineFactory(pipelineFactory)
bootstrap.setOption("backlog", RemoteServerSettings.BACKLOG)
bootstrap.setOption("child.tcpNoDelay", true)
bootstrap.setOption("child.keepAlive", true)
bootstrap.setOption("child.reuseAddress", true)