Packages

  • package root
    Definition Classes
    root
  • package xitrum

    Things that are usually used by application developers are put in this package for convenience, because when they want to use XXX, they can simply write:

    Things that are usually used by application developers are put in this package for convenience, because when they want to use XXX, they can simply write:

    import xitrum.XXX

    To avoid polluting this namespace, things that are utilities should be put in package xitrum.util, not here.

    Annotations and validators are put to package xitrum.annation and xitrum.validator because there are many of them. It's better for application developers to write:

    import xitrum.annotation._
    import xitrum.validator._
    Definition Classes
    root
  • package handler
    Definition Classes
    xitrum
  • package inbound
    Definition Classes
    handler
  • package outbound
    Definition Classes
    handler
  • AccessLog
  • Bootstrap
  • DefaultHttpChannelInitializer
  • HandlerEnv
  • NetOption
  • NoRealPipelining
  • SslChannelInitializer

object DefaultHttpChannelInitializer

Sharable handlers are put here so that they can be easily picked up by apps that want to use custom pipeline. Those apps may only want a subset of default handlers.

When an app uses its own dispatcher (not Xitrum's routing/dispatcher) and only needs Xitrum's fast static file serving, it may use only these handlers:

Inbound: HttpRequestDecoder Request2Env PublicFileServer Its own dispatcher

Outbound: HttpResponseEncoder ChunkedWriteHandler XSendFile

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DefaultHttpChannelInitializer
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. lazy val OPTIONSResponse: OPTIONSResponse
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. lazy val badClientSilencer: BadClientSilencer
  7. lazy val baseUrlRemover: BaseUrlRemover
  8. lazy val basicAuth: BasicAuth
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  10. lazy val dispatcher: Dispatcher
  11. lazy val env2Response: Env2Response
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  15. lazy val fixiOS6SafariPOST: FixiOS6SafariPOST
  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. lazy val methodOverrider: MethodOverrider
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. lazy val proxyProtocolHandler: ProxyProtocolHandler
  24. lazy val publicFileServer: PublicFileServer
  25. def removeHandlerIfExists(pipeline: ChannelPipeline, klass: Class[_ <: ChannelHandler]): Unit

    ChannelPipeline#remove(handler) throws exception if the handler does not exist in the pipeline.

  26. def removeUnusedHandlersForWebSocket(pipeline: ChannelPipeline): Unit
  27. lazy val setCORS: SetCORS
  28. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  29. def toString(): String
    Definition Classes
    AnyRef → Any
  30. lazy val uriParser: UriParser
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  34. lazy val webJarsServer: WebJarsServer
  35. lazy val xSendFile: XSendFile
  36. lazy val xSendResource: XSendResource

Inherited from AnyRef

Inherited from Any

Ungrouped