class BlazeBuilder[F[_]] extends ServerBuilder[F] with IdleTimeoutSupport[F] with SSLKeyStoreSupport[F] with SSLContextSupport[F] with server.WebSocketSupport[F]
BlazeBuilder is the component for the builder pattern aggregating different components to finally serve requests.
Variables:
- Annotations
- @deprecated
- Deprecated
(Since version 0.19.0-M2) Use BlazeServerBuilder instead
- Source
- BlazeBuilder.scala
- Alphabetic
- By Inheritance
- BlazeBuilder
- WebSocketSupport
- SSLContextSupport
- SSLKeyStoreSupport
- IdleTimeoutSupport
- ServerBuilder
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Instance Constructors
- new BlazeBuilder(socketAddress: InetSocketAddress, executionContext: ExecutionContext, idleTimeout: Duration, isNio2: Boolean, connectorPoolSize: Int, bufferSize: Int, enableWebSockets: Boolean, sslBits: Option[SSLConfig], isHttp2Enabled: Boolean, maxRequestLineLen: Int, maxHeadersLen: Int, serviceMounts: Vector[ServiceMount[F]], serviceErrorHandler: ServiceErrorHandler[F], banner: Seq[String])(implicit F: ConcurrentEffect[F], timer: Timer[F])
Type Members
-
type
Self = BlazeBuilder[F]
- Definition Classes
- BlazeBuilder → ServerBuilder
Value Members
-
final
def
bindAny(host: String = DefaultHost): Self
- Definition Classes
- ServerBuilder
-
final
def
bindHttp(port: Int = DefaultHttpPort, host: String = DefaultHost): Self
- Definition Classes
- ServerBuilder
-
final
def
bindLocal(port: Int): Self
- Definition Classes
- ServerBuilder
-
def
bindSocketAddress(socketAddress: InetSocketAddress): Self
- Definition Classes
- BlazeBuilder → ServerBuilder
- def enableHttp2(enabled: Boolean): Self
- def mountService(service: HttpRoutes[F], prefix: String): Self
-
def
resource: Resource[F, Server[F]]
Returns a Server resource.
Returns a Server resource. The resource is not acquired until the server is started and ready to accept requests.
- Definition Classes
- BlazeBuilder → ServerBuilder
-
final
def
serve: Stream[F, ExitCode]
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
-
final
def
serveWhile(terminateWhenTrue: SignallingRef[F, Boolean], exitWith: Ref[F, ExitCode]): Stream[F, ExitCode]
Runs the server as a Stream that emits only when the terminated signal becomes true.
Runs the server as a Stream that emits only when the terminated signal becomes true. Useful for servers with associated lifetime behaviors.
- Definition Classes
- ServerBuilder
-
def
stream: Stream[F, Server[F]]
Returns a Server stream.
Returns a Server stream. The stream does not emit until the server is started and ready to accept requests.
- Definition Classes
- ServerBuilder
-
def
withBanner(banner: Seq[String]): Self
Set the banner to display when the server starts up
Set the banner to display when the server starts up
- Definition Classes
- BlazeBuilder → ServerBuilder
- def withBufferSize(size: Int): Self
- def withConnectorPoolSize(size: Int): Self
- def withExecutionContext(executionContext: ExecutionContext): BlazeBuilder[F]
-
def
withIdleTimeout(idleTimeout: Duration): Self
- Definition Classes
- BlazeBuilder → IdleTimeoutSupport
-
def
withLengthLimits(maxRequestLineLen: Int = maxRequestLineLen, maxHeadersLen: Int = maxHeadersLen): Self
Configure HTTP parser length limits
Configure HTTP parser length limits
These are to avoid denial of service attacks due to, for example, an infinite request line.
- maxRequestLineLen
maximum request line to parse
- maxHeadersLen
maximum data that compose headers
- def withNio2(isNio2: Boolean): Self
-
def
withSSL(keyStore: StoreInfo, keyManagerPassword: String, protocol: String, trustStore: Option[StoreInfo], clientAuth: Boolean): Self
- Definition Classes
- BlazeBuilder → SSLKeyStoreSupport
-
def
withSSLContext(sslContext: SSLContext, clientAuth: Boolean): Self
- Definition Classes
- BlazeBuilder → SSLContextSupport
-
def
withServiceErrorHandler(serviceErrorHandler: ServiceErrorHandler[F]): Self
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
- BlazeBuilder → ServerBuilder
-
def
withWebSockets(enableWebsockets: Boolean): Self
- Definition Classes
- BlazeBuilder → WebSocketSupport
-
final
def
withoutBanner: Self
Disable the banner when the server starts up
Disable the banner when the server starts up
- Definition Classes
- ServerBuilder