February 2018
Intermediate to advanced
552 pages
13h 46m
English
In this section, we will try to implement some of the components using the Akka Toolkit to understand it well. Anyhow, it is not a real WF System, just a simple and dummy solution. We will improve this system, step by step in the coming chapters.
Perform the followings steps one by one:
Project Name: akka-wf-system
build.sbt:
name := "akka-wf-system"
version := "1.0"
scalaVersion := "2.12.2"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.5.9"
)
WFDataSystem.scala:
package com.packt.publishing.wfsystem import akka.actor.Actor sealed class WFDataMessage case ...
Read now
Unlock full access