org.querki.requester

RequestM

Related Doc: package requester

class RequestM[T] extends AnyRef

The request "monad". It's actually a bit suspicious, in that it's mutable, but by and large this behaves the way you expect a monad to work. In particular, it works with for comprehensions, allowing you to compose requests much the way you normally do Futures.

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

Instance Constructors

  1. new RequestM(promise: Promise[_])

    promise

    If this request had an implicit Promise in scope, that Promise gets saved away here. This is mainly so that exceptions can properly fail the Promise. If there is no implicit Promise, this will be set to Requester.emptyPromise, which is simply a signal that there isn't really one.

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. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  8. def filter(p: (T) ⇒ Boolean): RequestM[T]

  9. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. def flatMap[U](handler: (T) ⇒ RequestM[U]): RequestM[U]

  11. def foreach(handler: (T) ⇒ Unit): Unit

  12. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  13. def handle(handler: Function1[T, _]): Unit

  14. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  15. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  16. def map[U](handler: (T) ⇒ U): RequestM[U]

  17. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  20. val promise: Promise[_]

    If this request had an implicit Promise in scope, that Promise gets saved away here.

    If this request had an implicit Promise in scope, that Promise gets saved away here. This is mainly so that exceptions can properly fail the Promise. If there is no implicit Promise, this will be set to Requester.emptyPromise, which is simply a signal that there isn't really one.

  21. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  22. def toString(): String

    Definition Classes
    AnyRef → Any
  23. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. def withFilter(p: (T) ⇒ Boolean): RequestM[T]

Inherited from AnyRef

Inherited from Any

Ungrouped