vote up 1 vote down star
2

I have the following piece of code:

actor {
  loop {
     react {
       case SomeEvent =>
         //I want to submit a piece of work to a queue and then send a response 
         //when that is finished. However, I don't want *this* actor to block
         val params = "Some args"
         val f: Future[Any] = myQueue.submitWork( params );
         actor {
           //await here
           val response = f.get
           publisher ! response
         }

     }
  }
}

As I understood it, the outer actor would not block on f.get because that is actually being performed by a separate actor (the one created inside the SomeEvent handler).

Is this correct?

flag

1 Answer

vote up 2 vote down check

Yes, that is correct. Your outer actor will simply create an actor and suspend (wait for its next message). However, be very careful of this kind of thing. The inner actor is started automatically on the scheduler, to be handled by a thread. That thread will block on that Future (that looks like a java.util.concurrent.Future to me). If you do this enough times, you can run into starvation problems where all available threads are blocking on Futures. An actor is basically a work queue, so you should use those semantics instead.

Here's a version of your code, using the Scalaz actors library. This library is much simpler and easier to understand than the standard Scala actors (the source is literally a page and a half). It also leads to much terser code:

actor {(e: SomeEvent) => promise { ... } to publisher }

This version is completely non-blocking.

link|flag
But if I'm sending work to a queue and get a (juc) Future back, how can I avoid blocking in the case where I don't control the queue API (i.e. if I can't re-implement the work queue so that the publisher is given events upon work completing)? – oxbow_lakes Jun 5 at 7:23
Can you submit arbitrary code to the work queue? If so, you could submit a Unit-valued computation that ends by sending a message to one of your actors. And simply ignore the Future[Unit] – Apocalisp Jun 5 at 7:30
I've edited the question to make it a bit clearer exactly what I'm calling when I submitWork. Basically no, I can't submit arbitrary runnables/callables. However, I wrote all the code originally, so it looks like I'll just have to make an API change :-) – oxbow_lakes Jun 5 at 7:33
If the work queue is a Java API that you wrote, consider refactoring it with a Better Future: apocalisp.wordpress.com/2008/09/… – Apocalisp Jun 5 at 7:44
Also, consider that it might be OK to block in your case. If this system isn't highly concurrent, or if nothing will ever depend on the value in the Future. – Apocalisp Jun 5 at 7:49
show 3 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.