[akka-user] Re: Logger specified in config can't be loaded [akka.event.slf4j.Slf4jLogger]

2016-10-23 Thread Andrew James Ramirez
Try doing sbt clean update compile On Thursday, October 20, 2016 at 11:52:48 PM UTC+8, Gerard Vico wrote: > > Hi, > > I am working in a project with Scala and Akka. Two days ago, I can't > launch the test because this error is thrown: > > [WARN] [10/20/2016 15:47:32.743] [pool-1-thread-1]

[akka-user] Akka 2.4-SNAPSHOT that supports Scala 2.11

2015-01-12 Thread Andrew James Ramirez
Hi, I just recently updated to Scala 2.11 and I need some features from 2.4-SNAPSHOT but there is no _2.11-2.4-SNAPSHOT in the repository. Specifically this feature: https://github.com/akka/akka/pull/15610/files Where could I get it? Thanks in advance. -- Andrew -- Read the docs:

[akka-user] Re: Akka 2.4-SNAPSHOT that supports Scala 2.11

2015-01-12 Thread Andrew James Ramirez
Yes the docker probem. Do yo have any solution? without having this fix? On Monday, January 12, 2015 at 8:40:09 PM UTC+8, 何品 wrote: the docker one? 在 2015年1月12日星期一 UTC+8下午4:01:35,Andrew James Ramirez写道: Hi, I just recently updated to Scala 2.11 and I need some features from 2.4-SNAPSHOT

Re: [akka-user] Dependency/Actor Injection without any DI Framework.

2014-12-05 Thread Andrew James Ramirez
in Scala :-) If you'd need moer advanced things you can look at the cake pattern (that's pure scala, but sometimes gets a bit complicated). Hope this helps! On Tue, Nov 25, 2014 at 3:23 PM, Andrew James Ramirez andrewjam...@gmail.com javascript: wrote: Hi, What is the best way to do

[akka-user] Dependency/Actor Injection without any DI Framework.

2014-11-25 Thread Andrew James Ramirez
Hi, What is the best way to do this? Currently what I'm doing is class MainActor(Dependency1:ActorRef, Dependency2:ActorRef) = { def receive ={ case TestMessage = Dependency1 ! Test } } object MainActor{ def props(Dependency1:ActorRef, Dependency2:ActorRef) = Props(classOf[