Akka is an open-source toolkit and runtime simplifying the construction of concurrent and distributed applications on the JVM. It implements the actor model known from Erlang.
It should also mention any large subjects within akka, and link out to the related topics. Since the Documentation for akka is new, you may need to create initial versions of those related topics.
\scala\bin
.mini-package
.activator-x.x.xx-minimal\bin
(It includes the bash and bat scripts to run the activator).activator new
in cmd/terminal.4
because Hello World example is based on Scala.Download akka-2.0.zip distribution of Akka from http://akka.io/downloads/
Unzip akka-2.0.zip in any directory. (Example - /home/USERNAME/tools/akka-2.0) You would like to have Akka installed.
Set the AKKA_HOME
For Linux.
# First got to the installed location
cd /home/USERNAME/tools/akka-2.0
# Export the location as AKKA_HOME
export AKKA_HOME=`pwd`
# Check if PATH is Exported.
echo $AKKA_HOME
/home/USERNAME/tools/akka-2.0
For Windows
# First got to the installed location
C:\USERNAME\akka> cd akka-2.0
# Set the location as AKKA_HOME
C:\USERNAME\akka\akka-2.0> set AKKA_HOME=%cd%
# Check if PATH is Exported.
C:\USERNAME\akka\akka\akka-2.0> echo %AKKA_HOME%
C:\USERNAME\akka\akka-2.0