Hi John,

You could hide step 2-4 behind a method returning a future, that way you
can run the blocking operations on a separate threadpool.

Pseudocode:
def doWorkWithResource(item: WorkItem): Future[ComputationResult] = {
  Future {
    // acquire resource
    // do work
    // return resource to pool
  }(aSpecialExecutionContextForBlocking)

Source(largeButFiniteQueue).mapAsync(parallellism)(doWorkWithResource).to(Sink(someKindOfOutput))


The parallellism mapAsync parameter should then probably be the same as the
number of threads in the blocking threadpool as no more functions can run
in parallell anyway.

--
Johan Andrén
Akka Team, Lightbend Inc.

-- 
>>>>>>>>>>      Read the docs: http://akka.io/docs/
>>>>>>>>>>      Check the FAQ: 
>>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html
>>>>>>>>>>      Search the archives: https://groups.google.com/group/akka-user
--- 
You received this message because you are subscribed to the Google Groups "Akka 
User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.

Reply via email to