Http4sServerOptions

case
class Http4sServerOptions[F[_], G[_]](createFile: ServerRequest => G[TapirFile], deleteFile: TapirFile => G[Unit], ioChunkSize: Int, interceptors: List[Interceptor[G]])
Type Params
F

The effect type used for response body streams. Usually the same as G.

G

The effect type used for representing arbitrary side-effects, such as creating files or logging. Usually the same as F.

Companion
object
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

def appendInterceptor(i: Interceptor[G]): Http4sServerOptions[F, G]
def prependInterceptor(i: Interceptor[G]): Http4sServerOptions[F, G]

Inherited methods

def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product