object WebjarService
- Source
- WebjarService.scala
- Alphabetic
- By Inheritance
- WebjarService
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- final case class Config[F[_]](filter: WebjarAssetFilter = _ => true, cacheStrategy: CacheStrategy[F] = NoopCacheStrategy[F]) extends Product with Serializable
org.http4s.server.staticcontent.WebjarService configuration
org.http4s.server.staticcontent.WebjarService configuration
- 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
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- 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 synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
Deprecated Value Members
- def apply[F[_]](config: Config[F])(implicit F: Async[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
- Annotations
- @deprecated
- Deprecated
(Since version 1.0.0-M1) use WebjarServiceBuilder