I\'ve been studying the act开发者_如何学Cor model (specifically the implementation in Scala) but I can\'t understand why there\'s a requirement that messages arrive in no particular order.
I am writing a piece of code that would populate a mongoDB collection when the buffer (list) grow to a certain size.
Problem: I need to write an application to process several hundred files, each which will take several hundred megabytes and several seconds to do. I have written it using Future[Report] objects creat
I\'ve already read the question and answers to What design decisions would favour Scala\'s Actors instead of JMS?.
I\'m currently testing remote actors on Android. I have done a small program with two classes: the first implements the main activity and the second implements an actor.
When I wait for result of Scala Future, does it behave more like receive, or like react, i.e. does it block a thread, or sched开发者_StackOverflow中文版ules a continuation after result if available?Ye
In Akka, is there a way to restrict messages to actors to be of a specific static type other than using the \"Typed Actor\" APIs that use an RPC style programming model?
I was trying to write a simple producer class, in order to learn Actors. I wanted to have a producer, which starts with some directory, represented by a File object, and then sends messages to other a
I am working on my bc thesis project which should be a Minecraft server written in scala and Akka. The server should be easily deployable in the cloud or onto a cluster (not sure whether i use proper
I am sending my Scala Ac开发者_运维问答tor its messages from a for loop. The scala actor is receiving the