FileService

org.http4s.server.staticcontent.FileService$

Attributes

Source:
FileService.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Members list

Concise view

Type members

Classlikes

final case class Config[F[_]](systemPath: String, pathCollector: () => F, pathPrefix: String, bufferSize: Int, cacheStrategy: CacheStrategy[F])

Attributes

bufferSize

buffer size to use for internal read buffers

cacheStrategy

strategy to use for caching purposes. Default to no caching.

pathCollector

function that performs the work of collecting the file or rendering the directory into a response.

pathPrefix

prefix of Uri from which content will be served

systemPath

path prefix to the folder from which content will be served

Companion:
object
Source:
FileService.scala
Graph
Supertypes
trait Product
trait Equals
class Object
trait Matchable
class Any
object Config

Attributes

Companion:
class
Source:
FileService.scala
Graph
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type
Config.type

Types

type PathCollector[F[_]] = (Path, Config[F], Request[F]) => OptionT[F, Response[F]]

Attributes

Source:
FileService.scala