FileService

class Object
trait Matchable
class Any

Type members

Classlikes

final class Config[F[_]](val systemPath: String, val fs2PathCollector: () => F, val pathPrefix: String, val cacheStrategy: CacheStrategy[F], val bufferSize: Int) extends Product with Serializable with Equals
Value parameters:
bufferSize

buffer size to use for internal read buffers

cacheStrategy

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

fs2PathCollector

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
object Config
Companion:
class
Source:
FileService.scala

Types

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

Deprecated types

@deprecated("use FileService.Fs2PathCollector", "0.23.8")
type PathCollector[F[_]] = (File, Config[F], Request[F]) => OptionT[F, Response[F]]
Deprecated
Source:
FileService.scala