Packages

object TomcatBuilder extends TomcatBuilder

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

Type Members

  1. type Self = TomcatBuilder
    Definition Classes
    TomcatBuilderServletContainerServerBuilder

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): TomcatBuilder
    Definition Classes
    TomcatBuilderServerBuilder
  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]): TomcatBuilder

    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
    TomcatBuilderServletContainer
  17. def mountService(service: HttpService, prefix: String): TomcatBuilder
    Definition Classes
    TomcatBuilderServerBuilder
  18. def mountServlet(servlet: HttpServlet, urlMapping: String, name: Option[String] = None): TomcatBuilder

    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
    TomcatBuilderServletContainer
  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
    TomcatBuilderServerBuilder
  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): TomcatBuilder
    Definition Classes
    TomcatBuilderAsyncTimeoutSupport
  31. def withIdleTimeout(idleTimeout: Duration): TomcatBuilder
    Definition Classes
    TomcatBuilderIdleTimeoutSupport
  32. def withSSL(keyStore: StoreInfo, keyManagerPassword: String, protocol: String, trustStore: Option[StoreInfo], clientAuth: Boolean): Self
    Definition Classes
    TomcatBuilderSSLKeyStoreSupport
  33. def withServiceErrorHandler(serviceErrorHandler: ServiceErrorHandler): TomcatBuilder

    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
    TomcatBuilderServerBuilder
  34. def withServiceExecutor(serviceExecutor: ExecutorService): TomcatBuilder
    Definition Classes
    TomcatBuilderServerBuilder
  35. 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
    TomcatBuilderServletContainer
    See also

    org.http4s.servlet.ServletIo

Inherited from TomcatBuilder

Inherited from SSLKeyStoreSupport

Inherited from IdleTimeoutSupport

Inherited from ServletContainer

Inherited from AsyncTimeoutSupport

Inherited from ServerBuilder

Inherited from AnyRef

Inherited from Any

Ungrouped