c

org.http4s.rho

PathBuilder

final class PathBuilder[F[_], T <: HList] extends RouteExecutable[F, T] with Decodable[F, T, Nothing] with HeaderAppendable[F, T] with RoutePrependable[F, PathBuilder[F, T]] with UriConvertible[F]

Fully functional path building

Linear Supertypes
RoutePrependable[F, PathBuilder[F, T]], HeaderAppendable[F, T], Decodable[F, T, Nothing], RouteExecutable[F, T], TypedBuilder[F, T], UriConvertible[F], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PathBuilder
  2. RoutePrependable
  3. HeaderAppendable
  4. Decodable
  5. RouteExecutable
  6. TypedBuilder
  7. UriConvertible
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new PathBuilder(method: Method, path: PathRule)

Type Members

  1. type HeaderAppendResult[T <: HList] = Router[F, T]
    Definition Classes
    PathBuilderHeaderAppendable

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +?[T1 <: HList](query: TypedQuery[F, T1])(implicit prep: Prepend[T1, T]): QueryBuilder[F, Out]

    Capture a query rule

    Capture a query rule

    T1

    types of elements captured by query

    query

    Query capture rule

    returns

    a QueryBuilder with which to continue building the route

  4. def /[T2 <: HList](builder: RequestLineBuilder[F, T2])(implicit prep: Prepend[T2, T]): QueryBuilder[F, Out]

    Append the path and rules

    Append the path and rules

    builder

    RequestLineBuilder rules to append to the path capture rules.

    returns

    a new QueryBuilder that will execute the appended rules.

  5. def /[T2 <: HList](rules: TypedPath[F, T2])(implicit prep: Prepend[T2, T]): PathBuilder[F, Out]

    Append the path rules to the PathBuilder

    Append the path rules to the PathBuilder

    rules

    TypedPath rules to append to the path capture rules.

    returns

    a new PathBuilder that will execute the appended rules.

  6. def /(symbol: Symbol): PathBuilder[F, ::[String, T]]

    Capture a String from the path

    Capture a String from the path

    symbol

    Symbol representing the name of the segment to capture.

    returns

    a new PathBuilder that will capture a uri segment.

  7. def /(segment: String): PathBuilder[F, T]

    Match against a String

    Match against a String

    segment

    String to match against.

    returns

    a new PathBuilder that will match against the provided String.

  8. def /(tail: CaptureTail.type): Router[F, ::[List[String], T]]

    Capture the remaining elements in the path

    Capture the remaining elements in the path

    returns

    a Router

  9. def /:(prefix: TypedPath[F, HNil]): PathBuilder[F, T]

    Prepend the prefix to the path rules

    Prepend the prefix to the path rules

    prefix

    non-capturing prefix to prepend

    returns

    builder with the prefix prepended to the path rules

    Definition Classes
    PathBuilderRoutePrependable
  10. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  11. def >>>[T1 <: HList](h2: TypedHeader[F, T1])(implicit prep: Prepend[T1, T]): Router[F, Out]

    Append the header to the builder, generating a new typed representation of the route

    Append the header to the builder, generating a new typed representation of the route

    Definition Classes
    PathBuilderHeaderAppendable
  12. final def ^[R2 >: Nothing](decoder: EntityDecoder[F, R2])(implicit F: Functor[F], t: scala.reflect.api.JavaUniverse.TypeTag[R2]): CodecRouter[F, T, R2]

    Decode the body using the EntityDecoder

    Decode the body using the EntityDecoder

    Alias for decoding

    R2

    type of the result.

    decoder

    EntityDecoder to utilize for decoding the body.

    Definition Classes
    Decodable
  13. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  14. def asUri(request: Request[F]): Try[Uri]

    Converts a route into an Uri.

    Converts a route into an Uri.

    If the conversion fails None is returned. In case your route has multiple paths only one way will be resolved as instance of Uri. If the route is a URI Template but not an URI None will be returned.

    Definition Classes
    UriConvertible
  15. final def asUriTemplate(request: Request[F]): Try[UriTemplate]

    Converts a route into an UriTemplate.

    Converts a route into an UriTemplate.

    If the conversion fails None is returned. In case your route has multiple paths only one way will be resolved as instance of UriTemplate.

    Definition Classes
    TypedBuilderUriConvertible
  16. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  17. def decoding[R](decoder: EntityDecoder[F, R])(implicit F: Functor[F], t: scala.reflect.api.JavaUniverse.TypeTag[R]): CodecRouter[F, T, R]

    Decode the body using the EntityDecoder

    Decode the body using the EntityDecoder

    Alias for the ^ operator.

    decoder

    EntityDecoder to utilize for decoding the body.

    Definition Classes
    PathBuilderDecodable
  18. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  20. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. def makeRoute(action: Action[F, T]): RhoRoute[F, T]

    Create a RhoRoute from a given Action

    Create a RhoRoute from a given Action

    Definition Classes
    PathBuilderRouteExecutable
  24. val method: Method

    Method of the incoming HTTP Request

    Method of the incoming HTTP Request

    Definition Classes
    PathBuilderRouteExecutable
  25. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  26. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  27. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  28. val path: PathRule

    Untyped AST representation of the path to operate on

    Untyped AST representation of the path to operate on

    Definition Classes
    PathBuilderTypedBuilder
  29. val rules: RequestRule[F]

    Untyped AST describing the extraction of headers and the query from the Request

    Untyped AST describing the extraction of headers and the query from the Request

    Definition Classes
    PathBuilderTypedBuilder
  30. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  31. def toString(): String
    Definition Classes
    AnyRef → Any
  32. final def validate[T1 <: HList](header: TypedHeader[F, T1])(implicit prep: Prepend[T1, T]): HeaderAppendResult[Out]

    Append the header to the builder, generating a new typed representation of the route

    Append the header to the builder, generating a new typed representation of the route

    Definition Classes
    HeaderAppendable
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  35. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  36. final def |>>[U, R](f: U)(implicit hltf: HListToFunc[F, T, U], srvc: CompileRoutes[F, R]): R

    Compiles a HTTP request definition into an action

    Compiles a HTTP request definition into an action

    Definition Classes
    RouteExecutable

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from RoutePrependable[F, PathBuilder[F, T]]

Inherited from HeaderAppendable[F, T]

Inherited from Decodable[F, T, Nothing]

Inherited from RouteExecutable[F, T]

Inherited from TypedBuilder[F, T]

Inherited from UriConvertible[F]

Inherited from AnyRef

Inherited from Any

Ungrouped