learning-akka icon indicating copy to clipboard operation
learning-akka copied to clipboard

Code From Learning Akka

Results 6 learning-akka issues
Sort by recently updated
recently updated
newest added

I'm trying to run your code without activator. It works if I run it with `sbt publishLocal` and `sbt run` as downloaded. When I copy your build.sbt and src/ directory...

Learning scala / akka through your book and was getting collisions on port 2552 while running the provided test. I see that this is how the java version was fixed...

The default implementation of the `SClientIntegrationSpec` class gives an error if we try to run the tests twice. (port already in use). The default template from giter8 uses `TestKit` and...

Hi, In the chapter 2, AkkademyDb class, we have two different syntaxes for the same pattern (sending a failure message to the sender) `case None => sender() ! Status.Failure(new KeyNotFoundException(key))`...

1. .java not found learning-akka/ch6/akkademaid-java/src/main/java/com/akkademy/AkkademyDb.java [ import com.akkademy.japi.GetRequest; import com.akkademy.japi.KeyNotFoundException; import com.akkademy.japi.SetRequest; ] not found 2. file content: learning-akka/ch6/akkademaid-java/build.sbt name is [akkademy-db-scala]

Hey, I just went through this and for the code example on page 112: ``` public void postStart() { self().ask(new Connect(), null); } override def postStart = self ! connect...