Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7178327
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T16:53:58+00:00 2026-05-28T16:53:58+00:00

When working with Actors, if an Actor needs to co-operate with multiple other Actors

  • 0

When working with Actors, if an Actor needs to co-operate with multiple other Actors to fulfil a request then what’s the recommended approach here? To be more precise, if Actor A (through processing message M) needs to retrieve information from Actor B + Actor C, then it can send messages asynchronously to Actor B + C, but how should it correlate the responses from Actor B + C to the original message M ?

I’ve looked at the Akka framework and can’t see how this is done so have had to implement something myself whereby an Actor keeps track of what messages have been sent and attempts to correlate their responses back to the source message. I must be missing something as I would’ve thought that this type of behaviour would already be built into various Actor frameworks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T16:53:59+00:00Added an answer on May 28, 2026 at 4:53 pm

    Just create a new actor and use that to preserve the context and stop it after a timeout or when it has performed the “join”.
    You can also use Future-composition instead of spawning an actor:

    class A extends Actor {
      def receive = {
        case DoX(x) =>
          val b = actorB ? DoYourPartOf(x) mapTo manifest[BResult]
          val c = actorC ? DoYourPartOf(x) mapTo manifest[CResult]
          b zip c map { case (b,c) => merge(b,c) } pipeTo sender
        }
      }
    }
    

    Or Dataflow:

    class A extends Actor {
      def receive = {
        case DoX(x) => flow {
          val b = actorB ? DoYourPartOf(x) mapTo manifest[BResult]
          val c = actorC ? DoYourPartOf(x) mapTo manifest[CResult]
          merge(b(),c())
          } pipeTo sender
        }
      }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Working on a project that parses a log of events, and then updates a
Im currently working with two actors in scala. One, the producer , produces some
I am working on a simple 2D openGL project. It contains a main actor
I'm working on a library which implements the actor model on top of Grand
I'm attempting to get fault tolerant behavior in akka Actors. I am working on
I have a working prototype of a concurrent Scala program using Actors. I am
Working with dates in ruby and rails on windows, I'm having problems with pre-epoch
Working with a SqlCommand in C# I've created a query that contains a IN
Working on a project at the moment and we have to implement soft deletion
Working on a somewhat complex page for configuring customers at work. The setup is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.