Packages

object JettyBuilder extends JettyBuilder

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JettyBuilder
  2. JettyBuilder
  3. SSLContextSupport
  4. SSLKeyStoreSupport
  5. IdleTimeoutSupport
  6. ServletContainer
  7. AsyncTimeoutSupport
  8. ServerBuilder
  9. AnyRef
  10. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type Self = JettyBuilder
    Definition Classes
    JettyBuilderServletContainerServerBuilder

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. final def bindAny(host: String = DefaultHost): Self
    Definition Classes
    ServerBuilder
  6. final def bindHttp(port: Int = DefaultHttpPort, host: String = DefaultHost): Self
    Definition Classes
    ServerBuilder
  7. final def bindLocal(port: Int): Self
    Definition Classes
    ServerBuilder
  8. def bindSocketAddress(socketAddress: InetSocketAddress): JettyBuilder
    Definition Classes
    JettyBuilderServerBuilder
  9. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. def mountFilter(filter: Filter, urlMapping: String, name: Option[String], dispatches: EnumSet[DispatcherType]): JettyBuilder

    Mounts a filter to the server.

    Mounts a filter to the server.

    The http4s way is to create a middleware around an HttpService, which runs not just on servlet containers, but all supported backends. This method is good for legacy scenarios, or for reusing parts of the servlet ecosystem for an app that is committed to running on a servlet container.

    Definition Classes
    JettyBuilderServletContainer
  17. def mountService(service: HttpService, prefix: String): JettyBuilder
    Definition Classes
    JettyBuilderServerBuilder
  18. def mountServlet(servlet: HttpServlet, urlMapping: String, name: Option[String] = None): JettyBuilder

    Mounts a servlet to the server.

    Mounts a servlet to the server.

    The http4s way is to create an HttpService, which runs not just on servlet containers, but all supported backends. This method is good for legacy scenarios, or for reusing parts of the servlet ecosystem for an app that is committed to running on a servlet container.

    Definition Classes
    JettyBuilderServletContainer
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def run: Server

    Convenience method to run a server.

    Convenience method to run a server. The method blocks until the server is started.

    Definition Classes
    ServerBuilder
  23. final def serve: Process[Task, Nothing]

    Runs the server as a process that never emits.

    Runs the server as a process that never emits. Useful for a server that runs for the rest of the JVM's life.

    Definition Classes
    ServerBuilder
  24. def start: Task[Server]

    Returns a task to start a server.

    Returns a task to start a server. The task completes with a reference to the server when it has started.

    Definition Classes
    JettyBuilderServerBuilder
  25. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  26. def toString(): String
    Definition Classes
    AnyRef → Any
  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  30. def withAsyncTimeout(asyncTimeout: Duration): JettyBuilder
    Definition Classes
    JettyBuilderAsyncTimeoutSupport
  31. def withIdleTimeout(idleTimeout: Duration): JettyBuilder
    Definition Classes
    JettyBuilderIdleTimeoutSupport
  32. def withSSL(keyStore: StoreInfo, keyManagerPassword: String, protocol: String, trustStore: Option[StoreInfo], clientAuth: Boolean): Self
    Definition Classes
    JettyBuilderSSLKeyStoreSupport
  33. def withSSLContext(sslContext: SSLContext, clientAuth: Boolean): Self
    Definition Classes
    JettyBuilderSSLContextSupport
  34. def withServiceErrorHandler(serviceErrorHandler: ServiceErrorHandler): JettyBuilder

    Sets the handler for errors thrown invoking the service.

    Sets the handler for errors thrown invoking the service. Is not guaranteed to be invoked on errors on the server backend, such as parsing a request or handling a context timeout.

    Definition Classes
    JettyBuilderServerBuilder
  35. def withServiceExecutor(serviceExecutor: ExecutorService): JettyBuilder
    Definition Classes
    JettyBuilderServerBuilder
  36. def withServletIo(servletIo: ServletIo): Self

    Sets the servlet I/O mode for reads and writes within the servlet.

    Sets the servlet I/O mode for reads and writes within the servlet. Not to be confused with the server connectors.

    Definition Classes
    JettyBuilderServletContainer
    See also

    org.http4s.servlet.ServletIo

Inherited from JettyBuilder

Inherited from SSLContextSupport

Inherited from SSLKeyStoreSupport

Inherited from IdleTimeoutSupport

Inherited from ServletContainer

Inherited from AsyncTimeoutSupport

Inherited from ServerBuilder

Inherited from AnyRef

Inherited from Any

Ungrouped