unfiltered.netty

Http

case class Http(port: Int, host: String, handlers: List[() ⇒ ChannelHandler], beforeStopBlock: () ⇒ Unit, chunkSize: Int = 1048576) extends HttpServer with DefaultServerInit with Product with Serializable

Default implementation of the Server trait. If you want to use a custom pipeline factory it's better to extend Server directly.

Self Type
Http
Linear Supertypes
Serializable, Serializable, Product, Equals, DefaultServerInit, HttpServer, PlanServer[ChannelHandler], Server, RunnableServer, StartableServer, util.Server, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Http
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. DefaultServerInit
  7. HttpServer
  8. PlanServer
  9. Server
  10. RunnableServer
  11. StartableServer
  12. Server
  13. AnyRef
  14. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Http(port: Int, host: String, handlers: List[() ⇒ ChannelHandler], beforeStopBlock: () ⇒ Unit, chunkSize: Int = 1048576)

Type Members

  1. type ServerBuilder = Http

    Definition Classes
    Http → PlanServer → Server

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. val acceptor: EventLoopGroup

    EventLoopGroup associated with accepting client connections

    EventLoopGroup associated with accepting client connections

    Attributes
    protected
    Definition Classes
    Server
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def beforeStop(block: ⇒ Unit): Http

  9. val beforeStopBlock: () ⇒ Unit

    block of code to be invoked when the server is stopped, before connectons are closed

    block of code to be invoked when the server is stopped, before connectons are closed

    Definition Classes
    HttpHttpServer
  10. val channels: DefaultChannelGroup

    any channels added to this will receive broadcasted events

    any channels added to this will receive broadcasted events

    Attributes
    protected
    Definition Classes
    Server
  11. val chunkSize: Int

    Size, in bytes, to aggregate http requests in chunks of

    Size, in bytes, to aggregate http requests in chunks of

    Definition Classes
    HttpDefaultServerInit
  12. def chunked(size: Int = 1048576): Http

    Convenience method for adding a HttpObjectAggregator to the pipeline.

    Convenience method for adding a HttpObjectAggregator to the pipeline. Supports chunked request bodies up to the specified maximum bytes. Without this aggregator, chunked requests will not not be handled.

  13. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. def closeConnections(): Server

    Definition Classes
    Server
  15. def complete(line: ChannelPipeline): ChannelPipeline

    Attributes
    protected
    Definition Classes
    DefaultServerInit
  16. def destroy(): Http.this.type

    Definition Classes
    Server → StartableServer
  17. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  18. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  20. def handler(h: ChannelHandler): Http

  21. val handlers: List[() ⇒ ChannelHandler]

    A list of functions which will produce a channel handler when invoked

    A list of functions which will produce a channel handler when invoked

    Definition Classes
    HttpDefaultServerInitHttpServer
  22. val host: String

    host to bind to

    host to bind to

    Definition Classes
    HttpServer
  23. def initializer: ChannelInitializer[SocketChannel]

    ChannelInitializer that initializes the server bootstrap

    ChannelInitializer that initializes the server bootstrap

    Definition Classes
    HttpServer
  24. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  25. def makePlan(h: ⇒ ChannelHandler): Http

    Definition Classes
    Http → PlanServer
  26. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  27. final def notify(): Unit

    Definition Classes
    AnyRef
  28. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  29. def plan(plan: ChannelHandler): ServerBuilder

    Definition Classes
    PlanServer
  30. val port: Int

    port to listen on

    port to listen on

    Definition Classes
    HttpServer → StartableServer
  31. def resources(path: URL, cacheSeconds: Int = 60, passOnFail: Boolean = true): ServerBuilder

    Definition Classes
    HttpServer
  32. def run(afterStart: (ServerBuilder) ⇒ Unit, afterStop: (ServerBuilder) ⇒ Unit): Unit

    Definition Classes
    RunnableServer
  33. def run(afterStart: (ServerBuilder) ⇒ Unit): Unit

    Definition Classes
    RunnableServer
  34. def run(): Unit

    Definition Classes
    RunnableServer
  35. def start(preBind: (ServerBootstrap) ⇒ ServerBootstrap): ServerBuilder

    Starts server with preBind callback called before connection binding

    Starts server with preBind callback called before connection binding

    Definition Classes
    Server
  36. def start(): ServerBuilder

    Starts default server bootstrap

    Starts default server bootstrap

    Definition Classes
    Server → StartableServer
  37. def stop(): Http.this.type

    Definition Classes
    HttpServer → StartableServer
  38. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  39. val url: String

    Definition Classes
    Server
  40. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  41. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. val workers: EventLoopGroup

    EventLoopGroup associated with handling client requests

    EventLoopGroup associated with handling client requests

    Attributes
    protected
    Definition Classes
    Server

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from DefaultServerInit

Inherited from HttpServer

Inherited from PlanServer[ChannelHandler]

Inherited from Server

Inherited from RunnableServer

Inherited from StartableServer

Inherited from util.Server

Inherited from AnyRef

Inherited from Any

Ungrouped