akka
Akka error post.request.getReader
I use akka-mist and protobuf. Language Scala. Protobuf error Test Sender: val (post, writer) = RestPostMock(ProtoBufPack.toByteString)[详细]
2023-03-30 19:34 分类:问答JVM process killed by OS
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:[详细]
2023-03-30 04:28 分类:问答Basic Custom Akka Supervisor in Java
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.[详细]
2023-03-28 19:31 分类:问答Combining Akka, Spray, and embedded Jetty
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.[详细]
2023-03-28 11:25 分类:问答How to Implement Retry on Transient Actor Failure?
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[详细]
2023-03-25 05:16 分类:问答scala/akka/stm design for large shared state?
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[详细]
2023-03-24 21:56 分类:问答Akka control threadpool threads
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[详细]
2023-03-23 06:09 分类:问答Using Mokito to mock out an Akka Actor's log object
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[详细]
2023-03-21 11:54 分类:问答Is it OK to use blocking actor messages when they are wrapped in a future?
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[详细]
2023-03-20 12:22 分类:问答What is the ideal way to handle two different types of futures where one future is dependent on the other future?
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开[详细]
2023-03-20 05:50 分类:问答