package
webserver
Type Members
-
case class
HttpConfig(maxLengthInMB: Int, maxInitialLineLength: Int, maxHeaderSizeInBytes: Int, maxChunkSizeInBytes: Int, aggreateChunks: Boolean, minCompressibleContentSizeInBytes: Int, maxCompressibleContentSizeInBytes: Int, compressibleContentTypes: List[String], spdyEnabled: Boolean) extends Product with Serializable
-
class
PipelineFactory extends ChannelPipelineFactory with Logger
-
-
class
RequestHandler extends SimpleChannelUpstreamHandler with Logger
-
case class
SslConfig(keyStoreFile: File, keyStorePassword: String, trustStoreFile: Option[File], trustStorePassword: Option[String]) extends Product with Serializable
-
class
SslManager extends AnyRef
-
case class
TcpConfig(noDelay: Option[Boolean], sendBufferSize: Option[Int], receiveBufferSize: Option[Int], keepAlive: Option[Boolean], reuseAddress: Option[Boolean], soLinger: Option[Int], trafficClass: Option[Int], acceptBackLog: Option[Int]) extends Product with Serializable
-
case class
WebLogConfig(customActorPath: Option[String], format: Value) extends Product with Serializable
-
class
WebServer extends Logger
-
case class
WebServerConfig(serverName: String, hostname: String, port: Int, webLog: Option[WebLogConfig], ssl: Option[SslConfig], http: HttpConfig, tcp: TcpConfig) extends Extension with Product with Serializable
Socko web server built on top of Netty networking and Akka processing.