Trait

org.querki.requester

Requester

Related Doc: package requester

Permalink

trait Requester extends Actor with RequesterImplicits

Easy and relatively safe variant of "ask".

The idea here is that it would be lovely to have a replacement for the "ask" pattern. Ask is powerful, but quite dangerous -- in particular, handling the response in the most obvious way, using the Future's completion callbacks, is a fine way to break your Actor's threading and cause strange timing bugs.

So the idea here is to build something with similar semantics to ask, but deliberately a bit dumbed-down and safer for routine use. Where ask returns a Future that you can then put callbacks on, request() takes those callbacks as parameters, and runs them *in this Actor's main thread*.

In other words, I want to be able to say something like:

def receive = { ... case MyMessage(a, b) => { otherActor.request(MyRequest(b)).foreach { case OtherResponse(c) => ... } } }

While OtherResponse is lexically part of MyRequest, it actually *runs* during receive, just like any other incoming message, so it isn't prone to the threading problems that ask is.

How does this work? Under the hood, it actually does use ask, but in a very specific and constrained way. We send the message off using ask, and then hook the resulting Future. When the Future completes, we wrap the response and the handler together in a RequestedResponse message, and loop that back around as a message to the local Actor.

Note that the original sender is preserved, so the callback can use it without problems. (This is the most common error made when using ask, and was one of the motivations for creating Requester.)

Note that, to make this work, the Request trait mixes in its own version of unhandled(). For this to work properly, therefore, it is very important that, if your own Actor overrides unhandled, it calls super.unhandled() for unknown messages!

That unhandled() override is usually enough to catch the looped-back messages, so you usually just need to mix Requester into your Actor. However, if your Actor's receive function is intercepting *all* messages (so nothing makes it to unhandled), then you will need to call handleRequestResponse at the beginning of your receive; otherwise, your Actor can wind up deadlocked. This can particularly happen when using stash() during Actor startup:

def receive = handleRequestResponse orElse {
  case Start => {
    persistence.request(LoadMe(myId)) foreach { myState =>
      setState(myState)
      unstashAll()
      become(mainReceive)
    }
  }

  case _ => stash()
}

In this startup pattern, we are stashing all messages until the persister responds with the Actor's state. However, if we didn't have handleRequestResponse there, the response would also get stashed, so the Actor would never receive the state message, and the Actor would be stuck.

IMPORTANT: Requester is *not* compatible with stateful versions of become() -- that is, if you are using become() in a method where you are capturing the parameters in the closure of become(), Requester will probably not work right. This is because the body of the response handler will capture the closed-over parameter, and if the Actor has become() something else in the meantime, the handler will use the *old* data, not the new.

More generally, Requester should be used with caution if your Actor changes state frequently. While it *can* theoretically be used with FSM, it may not be wise to do so, since the state machine may no longer be in a compatible state by the time the response is received. Requester is mainly intended for Actors that spend most or all of their time in a single state; it generally works quite well for those.

Linear Supertypes
RequesterImplicits, Actor, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Requester
  2. RequesterImplicits
  3. Actor
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type Receive = PartialFunction[Any, Unit]

    Permalink
    Definition Classes
    Actor
  2. implicit class RequestableActorRef extends AnyRef

    Permalink

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

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

    Definition Classes
    RequesterImplicits
  3. implicit class RequestableActorSelection extends AnyRef

    Permalink

    Similar to RequestableActorRef, but works with an ActorSelection.

    Similar to RequestableActorRef, but works with an ActorSelection.

    Definition Classes
    RequesterImplicits
  4. case class RequestedResponse[T](response: Try[T], handler: RequestM[T]) extends Product with Serializable

    Permalink

    The response from request() will be wrapped up in here and looped around.

    The response from request() will be wrapped up in here and looped around. You shouldn't need to use this directly.

Abstract Value Members

  1. abstract def receive: akka.actor.Actor.Receive

    Permalink
    Definition Classes
    Actor

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def aroundPostRestart(reason: Throwable): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
  5. def aroundPostStop(): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
  6. def aroundPreRestart(reason: Throwable, message: Option[Any]): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
  7. def aroundPreStart(): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
  8. def aroundReceive(receive: akka.actor.Actor.Receive, msg: Any): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
  9. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  10. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. implicit val context: ActorContext

    Permalink
    Definition Classes
    Actor
  12. def doRequest[T](otherActor: ActorRef, msg: Any, handler: RequestM[T])(implicit tag: ClassTag[T]): Unit

    Permalink

    Send a request, and specify the handler for the received response.

    Send a request, and specify the handler for the received response. You may also specify a failHandler, which will be run if the operation fails for some reason. (Most often, because we didn't receive a response within the timeout window.)

  13. def doRequestGuts[T](f: Future[Any], handler: RequestM[T])(implicit tag: ClassTag[T]): Unit

    Permalink
  14. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit

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

    Permalink
    Definition Classes
    AnyRef → Any
  18. def handleRequestResponse: Receive

    Permalink

    Normally you don't need to invoke this manually -- Requester defines an unhandled() override that deals with these responses.

    Normally you don't need to invoke this manually -- Requester defines an unhandled() override that deals with these responses. But if your receive method intercepts *all* messages for some reason (for example, it stashes everything), then you should add this at the front of your receive so that it deals with responses.

  19. def hashCode(): Int

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

    Permalink
    Definition Classes
    Any
  21. implicit def loopback[T](f: Future[T])(implicit tag: ClassTag[T], enclosing: FullName, file: File, line: Line): RequestM[T]

    Permalink

    Convert a Future into a Request.

    Convert a Future into a Request.

    This takes the specified Future, and runs it in the Requester's main loop, to make it properly safe. As usual, sender will be preserved.

    This is implicit, so if you are in a context that already expects a Request (such as a for comprehension with a Request at the top), it will quietly turn the Future into a Request. If Request isn't already expected, though, you'll have to specify loopback explicitly.

    Definition Classes
    RequesterImplicits
  22. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  23. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  25. def postRestart(reason: Throwable): Unit

    Permalink
    Definition Classes
    Actor
    Annotations
    @throws( classOf[java.lang.Exception] )
  26. def postStop(): Unit

    Permalink
    Definition Classes
    Actor
    Annotations
    @throws( classOf[java.lang.Exception] )
  27. def preRestart(reason: Throwable, message: Option[Any]): Unit

    Permalink
    Definition Classes
    Actor
    Annotations
    @throws( classOf[java.lang.Exception] )
  28. def preStart(): Unit

    Permalink
    Definition Classes
    Actor
    Annotations
    @throws( classOf[java.lang.Exception] )
  29. implicit def request2Future[T](req: RequestM[T]): Future[T]

    Permalink

    Convert a Request into a Future.

    Convert a Request into a Future.

    Sometimes, at the edges of the API, you need to think in terms of Futures. When this is necessary, this implicit will take your RequestM and turn it into a Future of the matching type.

    Definition Classes
    RequesterImplicits
  30. implicit val requestTimeout: Timeout

    Permalink

    Override this to specify the timeout for requests

    Override this to specify the timeout for requests

    TODO: this is suspicious, since it does not follow Akka's preferred pattern for timeouts. We might change how this works.

  31. val requester: Requester

    Permalink

    The actual Requester that is going to send the requests and process the responses.

    The actual Requester that is going to send the requests and process the responses. If you mix RequesterImplicits into a non-Requester, this must point to that Actor, which does all the real work. (If you are using this from within Requester, it's already set.)

    Definition Classes
    RequesterRequesterImplicits
  32. implicit final val self: ActorRef

    Permalink
    Definition Classes
    Actor
  33. final def sender(): ActorRef

    Permalink
    Definition Classes
    Actor
  34. def supervisorStrategy: SupervisorStrategy

    Permalink
    Definition Classes
    Actor
  35. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  36. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  37. def unhandled(message: Any): Unit

    Permalink
    Definition Classes
    Requester → Actor
  38. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from RequesterImplicits

Inherited from Actor

Inherited from AnyRef

Inherited from Any

Ungrouped