Simple application implementing a TCP chat server with Akka.
Execute the command sbt run
from the root of this project.
This will start a server listening by default on port 10000.
Once started, you could connect to the server via telnet, as:
telnet localhost 10000
and you can start to broadcast your messages to all the other connected clients, like this:
If you wish to launch the server on a different port or hostname, you can configure it by editing the properties defined in application.conf
The broadcasting engine has been tested using Akka TestKit.