Trait

unfiltered.netty

NettyBase

Related Doc: package netty

Permalink

trait NettyBase extends RunnableServer

Base Netty server trait for http and websockets

Annotations
@deprecated
Deprecated

(Since version 0.8.1) Use unfiltered.netty.Server

Source
http.scala
Linear Supertypes
RunnableServer, StartableServer, util.Server, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NettyBase
  2. RunnableServer
  3. StartableServer
  4. Server
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. abstract type ServerBuilder >: NettyBase.this.type <: util.Server

    Permalink
    Definition Classes
    Server

Abstract Value Members

  1. abstract val host: String

    Permalink

    host to bind to

  2. abstract def initializer: ChannelInitializer[SocketChannel]

    Permalink

    ChannelInitializer that initializes the server bootstrap

    ChannelInitializer that initializes the server bootstrap

    Attributes
    protected
  3. abstract val port: Int

    Permalink

    port to listen on

  4. abstract def stop(): ServerBuilder

    Permalink
    Definition Classes
    StartableServer

Concrete Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. val acceptor: EventLoopGroup

    Permalink

    EventLoopGroup associated with accepting client connections

    EventLoopGroup associated with accepting client connections

    Attributes
    protected
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def bestEventLoopGroup: MultithreadEventLoopGroup

    Permalink
    Attributes
    protected
  7. val channels: DefaultChannelGroup

    Permalink

    any channels added to this will receive broadcasted events

    any channels added to this will receive broadcasted events

    Attributes
    protected
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def closeConnections(): NettyBase

    Permalink
  10. def destroy(): NettyBase.this.type

    Permalink
    Definition Classes
    NettyBase → StartableServer
  11. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit

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

    Permalink
    Definition Classes
    AnyRef → Any
  15. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  16. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  17. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. def portBindings: List[HttpPortBindingShim]

    Permalink
    Definition Classes
    NettyBase → StartableServer
  21. def run(afterStart: (ServerBuilder) ⇒ Unit, afterStop: (ServerBuilder) ⇒ Unit): Unit

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

    Permalink
    Definition Classes
    RunnableServer
  23. def run(): Unit

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

    Permalink

    Starts server with preBind callback called before connection binding

  25. def start(): ServerBuilder

    Permalink

    Starts default server bootstrap

    Starts default server bootstrap

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

    Permalink
    Definition Classes
    AnyRef
  27. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  28. val url: String

    Permalink
  29. final def wait(): Unit

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

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

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

    Permalink

    EventLoopGroup associated with handling client requests

    EventLoopGroup associated with handling client requests

    Attributes
    protected

Inherited from RunnableServer

Inherited from StartableServer

Inherited from util.Server

Inherited from AnyRef

Inherited from Any

Ungrouped