object WebjarService
- Alphabetic
- By Inheritance
- WebjarService
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
final
case class
Config[F[_]](blockingExecutionContext: ExecutionContext, filter: WebjarAssetFilter = _ => true, cacheStrategy: CacheStrategy[F] = NoopCacheStrategy[F]) extends Product with Serializable
org.http4s.server.staticcontent.WebjarService configuration
org.http4s.server.staticcontent.WebjarService configuration
- blockingExecutionContext
execution context for blocking I/O
- filter
To filter which assets from the webjars should be served
- cacheStrategy
strategy to use for caching purposes. Default to no caching.
-
final
case class
WebjarAsset(library: String, version: String, asset: String) extends Product with Serializable
Contains the information about an asset inside a webjar
Contains the information about an asset inside a webjar
- library
The webjar's library name
- version
The version of the webjar
- asset
The asset name inside the webjar
-
type
WebjarAssetFilter = (WebjarAsset) ⇒ Boolean
A filter callback for Webjar asset It's a function that takes the WebjarAsset and returns whether or not the asset should be served to the client.
Value Members
-
def
apply[F[_]](config: Config[F])(implicit F: Effect[F], cs: ContextShift[F]): HttpRoutes[F]
Creates a new HttpRoutes that will filter the webjars
Creates a new HttpRoutes that will filter the webjars
- config
The configuration for this service
- returns
The HttpRoutes