[akka-user] Re: Installing Akka in Textmate 2 on macOS Sierra

2016-12-07 Thread pagoda_5b
Akka is not a plugin or extension to use on a text editor. It's a toolkit for the scala language, bundled as a common library, that you can use to create distributed asynchronous systems. It's not really clear what you're trying to do with Textmate. Ivano On Friday, December 2, 2016 at 8:29:49

[akka-user] Re: controller and gui interaction

2014-10-02 Thread pagoda_5b
I think many details are missing, but the most simple thing that comes to mind is 1. create the controller actor from the gui, holding a reference to the ActorRef (you can even inject this in the GUI to decouple the twos) 2. right after creation, send a reference of the gui object (using this)

[akka-user] Re: Learning Akka with Akka Concurrency book

2014-07-01 Thread pagoda_5b
Apart from a couple of substantial differences in the API syntax (essentially the actorSelection method) and missing akka-persistence and clustering (which are not beginners topics anyway), I'd suggest you read through Wyatt's book anyway. The philosophy behind the actor model and messaging and

Re: [akka-user] [Akka 2.2.3-Java] Does remoting always require a local actor system?

2014-02-05 Thread pagoda_5b
https://github.com/romix/akka-kryo-serialization On Wednesday, February 5, 2014 10:42:31 AM UTC+1, Kaizah Kaiser wrote: but I'd have to write a Kryo (serialization API used by Storm) serializer for Akka, but that kind of eliminates my idea of having a neat minimal setup. -- Read

Re: [akka-user] [Akka 2.2.3-Java] Does remoting always require a local actor system?

2014-02-05 Thread pagoda_5b
I'd add that Akka 2.2.x already provides TCP-based communication within the actor system with the Akka I/O Layer Docs http://doc.akka.io/docs/akka/2.2.3/scala/io.html An introductory blog entry from Heiko Seeberger http://hseeberger.github.io/blog/2013/06/17/introduction-to-akka-i-slash-o/ Bye