I use akka-mist and protobuf. Language Scala. Protobuf error Test Sender: val (post, writer) = RestPostMock(ProtoBufPack.toByteString)
I\'ve implemented a web service using Camel\'s Jetty component through Akka (end开发者_开发技巧point) which forwards received messages to an actor pool with the setup of:
I\'m trying to implement jobs with retry semantics using Akka.If a worker fails (throws an exception) during its job, in addition to restarting it I want to resubmit the job it was working on.
I\'m trying to create a standalone JAR containing Akka, Spray, and Jetty. Ideally I distribute the entire application in that single file, without any external files whatsoever.
I\'m in a typical situation where I have a group of worker actors that are being fed jobs from a queue.Worker failures can be either transient and due to the environment, or permanent and due to an in
I am new to Scala and Akka and am considering using it to solve a problem. Suppose I have a calculation engine (that searches for a solution). I\'d like to parallelize that search both across cpus and
Potentially a very silly question-- Is it possible to customize Akka/Scala actors such that you control the threads that are used by the actors? e.g. can you initialize your own set of threads to be
I\'ve tried a couple of things which seem to compile but throw NullPointer exceptions during unit testing so I\'m wondering how I could potentially overcome the limitations in unit-testing.I have a cl
My current application is based on akka 1.1. It has multiple ProjectAnalysisActors eachresponsible for handling analysis tasks for a specific project. The analysis is started when such an actor receiv
I\'m looking at AKKA\'s Java Futures API, and I see a lot of ways to handle multiple futures of the same type, but I don\'t see anything that pops out at me for handling futures of different types. I开