class BlazeBuilder extends ServerBuilder with IdleTimeoutSupport with SSLKeyStoreSupport with SSLContextSupport with server.WebSocketSupport
- 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], serviceErrorHandler: ServiceErrorHandler)
Type Members
-
type
Self = BlazeBuilder
- Definition Classes
- BlazeBuilder → ServerBuilder
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
+(other: String): String
- Implicit
- This member is added by an implicit conversion from BlazeBuilder to any2stringadd[BlazeBuilder] performed by method any2stringadd in scala.Predef.
- Definition Classes
- any2stringadd
-
def
->[B](y: B): (BlazeBuilder, B)
- Implicit
- This member is added by an implicit conversion from BlazeBuilder to ArrowAssoc[BlazeBuilder] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @inline()
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
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): BlazeBuilder
- Definition Classes
- BlazeBuilder → ServerBuilder
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
- def enableHttp2(enabled: Boolean): BlazeBuilder
-
def
ensuring(cond: (BlazeBuilder) ⇒ Boolean, msg: ⇒ Any): BlazeBuilder
- Implicit
- This member is added by an implicit conversion from BlazeBuilder to Ensuring[BlazeBuilder] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: (BlazeBuilder) ⇒ Boolean): BlazeBuilder
- Implicit
- This member is added by an implicit conversion from BlazeBuilder to Ensuring[BlazeBuilder] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: Boolean, msg: ⇒ Any): BlazeBuilder
- Implicit
- This member is added by an implicit conversion from BlazeBuilder to Ensuring[BlazeBuilder] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: Boolean): BlazeBuilder
- Implicit
- This member is added by an implicit conversion from BlazeBuilder to Ensuring[BlazeBuilder] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
formatted(fmtstr: String): String
- Implicit
- This member is added by an implicit conversion from BlazeBuilder to StringFormat[BlazeBuilder] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @inline()
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
mountService(service: HttpService, prefix: String): BlazeBuilder
- Definition Classes
- BlazeBuilder → ServerBuilder
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
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
-
final
def
serve: Stream[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
-
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
- BlazeBuilder → ServerBuilder
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
- def withBufferSize(size: Int): BlazeBuilder
- def withConnectorPoolSize(size: Int): BlazeBuilder
-
def
withExecutionContext(ec: ExecutionContext): Self
- Definition Classes
- BlazeBuilder → ServerBuilder
-
def
withIdleTimeout(idleTimeout: Duration): BlazeBuilder
- Definition Classes
- BlazeBuilder → IdleTimeoutSupport
-
def
withLengthLimits(maxRequestLineLen: Int = maxRequestLineLen, maxHeadersLen: Int = maxHeadersLen): BlazeBuilder
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): BlazeBuilder
-
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): BlazeBuilder
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
-
def
→[B](y: B): (BlazeBuilder, B)
- Implicit
- This member is added by an implicit conversion from BlazeBuilder to ArrowAssoc[BlazeBuilder] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
Deprecated Value Members
-
def
withExecutorService(executorService: ExecutorService): Self
- Definition Classes
- ServerBuilder
- Annotations
- @deprecated
- Deprecated
(Since version 0.17) Use withExecutionContext
-
def
withServiceExecutor(executorService: ExecutorService): Self
- Definition Classes
- ServerBuilder
- Annotations
- @deprecated
- Deprecated
(Since version 0.17.0) Use withExecutionContext