org.querki.requester.RequesterImplicits

RequestableActorRef

Related Doc: package RequesterImplicits

implicit class RequestableActorRef extends AnyRef

Hook to add the request() methods to a third-party Actor.

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

Instance Constructors

  1. new RequestableActorRef(target: ActorRef)

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 finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  10. def hashCode(): Int

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

    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  15. def request(msg: Any)(implicit promise: Promise[_] = Requester.emptyPromise): RequestM[Any]

    The basic, simple version of request() -- sends a message, process the response.

    The basic, simple version of request() -- sends a message, process the response.

    You can think of request as a better-behaved version of ask. Where ask sends a message to the target actor, and gives you a Future that will execute when the response is received, request does the same thing but will process the resulting RequestM in the Actor's receive loop. While this doesn't save you from every possible problem, it makes it much easier to write clear and complex operations, involving coordinating several different Actors, without violating the central invariants of the Actor model.

    The current sender will be preserved and will be active during the processing of the results, so you can use it as normal.

    This version of the call does not impose any expectations on the results. You can use a destructuring case class in a for comprehension if you want just a single return type, or you can map the RequestM to a PartialFunction in order to handle several possible returns.

    msg

    The message to send to the target actor.

    promise

    If there is an implicit Promise in scope, errors will cause that Promise to fail.

  16. def requestFor[T](msg: Any)(implicit promise: Promise[_] = Requester.emptyPromise, tag: ClassTag[T]): RequestM[T]

    A more strongly-typed version of request().

    A more strongly-typed version of request().

    This works pretty much exactly like request, but expects that the response will be of type T. It will throw a ClassCastException if anything else is received. Otherwise, it is identical to request().

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

    Definition Classes
    AnyRef
  18. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped