org.http4s

dsl

package dsl

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. dsl
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. case class /(parent: Path, child: String) extends Path with Product with Serializable

  2. case class :?(path: Path, params: Map[String, Seq[String]]) extends Product with Serializable

  3. abstract class DoubleParamMatcher extends AnyRef

    Double param extractor: object Latitude extends DoubleParamMatcher("lat") (Path(request.

  4. abstract class IntParamMatcher extends AnyRef

    IntParam param extractor: object Page extends IntParamMatcher("page") (Path(request.

  5. abstract class LongParamMatcher extends AnyRef

    LongParam param extractor: object UserId extends LongParamMatcher("user_id") (Path(request.

  6. class NumericParam[A <: AnyVal] extends AnyRef

    Attributes
    protected
  7. abstract class ParamMatcher extends AnyRef

    Param extractor: object ScreenName extends ParamMatcher("screen_name") (Path(request.

  8. abstract class Path extends AnyRef

    Base class for path extractors.

Value Members

  1. object ->

  2. object :&

    Multiple param extractor: object A extends ParamMatcher("a") object B extends ParamMatcher("b") (Path(request.

  3. object :/

  4. val Connect: Value

  5. val Delete: Value

  6. val Get: Value

  7. val Head: Value

  8. object IntParam extends NumericParam[Int]

    Integer extractor: Path("/user/123") match { case Root / "user" / IntParam(userId) => .

  9. object LongParam extends NumericParam[Long]

    LongParam extractor: Path("/user/123") match { case Root / "user" / LongParam(userId) => .

  10. val Options: Value

  11. val Patch: Value

  12. object Path

  13. val Post: Value

  14. val Put: Value

  15. object Root extends Path with Product with Serializable

    Root extractor: Path("/") match { case Root => .

  16. val Trace: Value

  17. object ~

    File extension extractor

Inherited from AnyRef

Inherited from Any

Ungrouped