Packages

final class EmberServerBuilder[F[_]] extends AnyRef

Self Type
EmberServerBuilder[F]
Source
EmberServerBuilder.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EmberServerBuilder
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

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. val additionalSocketOptions: List[SocketOption]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def build: Resource[F, Server]
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. val host: Option[Host]
  14. val idleTimeout: Duration
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. val maxConnections: Int
  17. val maxHeaderSize: Int
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. val port: Port
  22. val receiveBufferSize: Int
  23. val requestHeaderReceiveTimeout: Duration
  24. val shutdownTimeout: Duration
  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
    @throws( ... ) @native()
  30. def withErrorHandler(errorHandler: PartialFunction[Throwable, F[Response[F]]]): EmberServerBuilder[F]
  31. def withHost(host: Host): EmberServerBuilder[F]
  32. def withHostOption(host: Option[Host]): EmberServerBuilder[F]
  33. def withHttpApp(httpApp: HttpApp[F]): EmberServerBuilder[F]
  34. def withHttpWebSocketApp(f: (WebSocketBuilder[F]) ⇒ HttpApp[F]): EmberServerBuilder[F]
  35. def withIdleTimeout(idleTimeout: Duration): EmberServerBuilder[F]
  36. def withLogger(l: Logger[F]): EmberServerBuilder[F]
  37. def withMaxConnections(maxConnections: Int): EmberServerBuilder[F]
  38. def withMaxHeaderSize(maxHeaderSize: Int): EmberServerBuilder[F]
  39. def withOnWriteFailure(onWriteFailure: (Option[Request[F]], Response[F], Throwable) ⇒ F[Unit]): EmberServerBuilder[F]
  40. def withPort(port: Port): EmberServerBuilder[F]
  41. def withReceiveBufferSize(receiveBufferSize: Int): EmberServerBuilder[F]
  42. def withRequestHeaderReceiveTimeout(requestHeaderReceiveTimeout: Duration): EmberServerBuilder[F]
  43. def withShutdownTimeout(shutdownTimeout: Duration): EmberServerBuilder[F]
  44. def withSocketGroup(sg: SocketGroup[F]): EmberServerBuilder[F]
  45. def withTLS(tlsContext: TLSContext[F], tlsParameters: TLSParameters = TLSParameters.Default): EmberServerBuilder[F]
  46. def withUnixSocketConfig(unixSockets: UnixSockets[F], unixSocketAddress: UnixSocketAddress, deleteIfExists: Boolean = true, deleteOnClose: Boolean = true): EmberServerBuilder[F]
  47. def withoutHost: EmberServerBuilder[F]
  48. def withoutTLS: EmberServerBuilder[F]
  49. def withoutUnixSocketConfig: EmberServerBuilder[F]

Deprecated Value Members

  1. val maxConcurrency: Int
    Annotations
    @deprecated
    Deprecated

    (Since version 0.22.3) Use org.http4s.ember.server.EmberServerBuilder.maxConnections

  2. def withMaxConcurrency(maxConcurrency: Int): EmberServerBuilder[F]
    Annotations
    @deprecated
    Deprecated

    (Since version 0.22.3) Use org.http4s.ember.server.EmberServerBuilder.withMaxConnections

  3. def withOnError(onError: (Throwable) ⇒ Response[F]): EmberServerBuilder[F]
    Annotations
    @deprecated
    Deprecated

    (Since version Use withErrorHandler - Do not allow the F to fail) 0.21.17

Inherited from AnyRef

Inherited from Any

Ungrouped