|
Akka/Scala example source code file (CreationApplication.scala)
The CreationApplication.scala Akka example source codepackage sample.remote.calculator import scala.concurrent.duration._ import com.typesafe.config.ConfigFactory import scala.util.Random import akka.actor.ActorSystem import akka.actor.Props object CreationApplication { def main(args: Array[String]): Unit = { if (args.isEmpty || args.head == "CalculatorWorker") startRemoteWorkerSystem() if (args.isEmpty || args.head == "Creation") startRemoteCreationSystem() } def startRemoteWorkerSystem(): Unit = { ActorSystem("CalculatorWorkerSystem", ConfigFactory.load("calculator")) println("Started CalculatorWorkerSystem") } def startRemoteCreationSystem(): Unit = { val system = ActorSystem("CreationSystem", ConfigFactory.load("remotecreation")) val actor = system.actorOf(Props[CreationActor], name = "creationActor") println("Started CreationSystem") import system.dispatcher system.scheduler.schedule(1.second, 1.second) { if (Random.nextInt(100) % 2 == 0) actor ! Multiply(Random.nextInt(20), Random.nextInt(20)) else actor ! Divide(Random.nextInt(10000), (Random.nextInt(99) + 1)) } } } Other Akka source code examplesHere is a short list of links related to this Akka CreationApplication.scala source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.