trait Directives extends AnyRef

Source
Directives.scala
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Directives
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class when [A](f: PartialFunction[HttpRequest[Any], A]) extends Product with Serializable

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def cookies: Directive[Any, Nothing, Map[String, Option[Cookie]]]
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def error[R](r: R): Directive[Any, R, Nothing]
  10. def failure[R](r: R): Directive[Any, R, Nothing]
  11. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  13. def getOrElse[R, A](opt: Option[A], orElse: ⇒ ResponseFunction[R]): Directive[Any, ResponseFunction[R], A]
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  15. def headerNames: Directive[Any, Nothing, Iterator[String]]
  16. def headers(name: String): Directive[Any, Nothing, Iterator[String]]
  17. def inputStream: Directive[Any, Nothing, InputStream]
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def isSecure: Directive[Any, Nothing, Boolean]
  20. def method: Directive[Any, Nothing, String]
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  24. def param[A, B](name: String)(f: (Seq[String]) ⇒ Option[B]): Directive[Any, Nothing, Option[B]]
  25. def parameterNames: Directive[Any, Nothing, Iterator[String]]
  26. def parameterValues(param: String): Directive[Any, Nothing, Seq[String]]
  27. def protocol: Directive[Any, Nothing, String]
  28. def queryParams: Directive[Any, Nothing, Map[String, Seq[String]]]
  29. def reader: Directive[Any, Nothing, Reader]
  30. def remoteAddr: Directive[Any, Nothing, String]
  31. def request[T]: Directive[T, Nothing, HttpRequest[T]]
  32. def result[R, A](r: Result[R, A]): Directive[Any, R, A]
  33. def success[A](value: A): Directive[Any, Nothing, A]

    Produces a Directive with the given Result.Success value, for when a directive is required to satisfy an intent's interface but all requests are acceptable

  34. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  35. def toString(): String
    Definition Classes
    AnyRef → Any
  36. def underlying[T]: Directive[T, Nothing, T]
  37. def uri: Directive[Any, Nothing, String]
  38. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  41. object commit extends Directive[Any, Nothing, Unit]

Deprecated Value Members

  1. def autocommit[T, R, A](d: Directive[T, R, A]): Directive[T, R, A]
    Annotations
    @deprecated
    Deprecated

    (Since version 0.7.0) Use: for { x <- myDirective _ <- commit ... } instead of autocommit(myDirective)

Inherited from AnyRef

Inherited from Any

Ungrouped