Wordcount fonctionnel

- Timeout to permit to worker to join cluster
- wordcount
- sort
This commit is contained in:
TM-Squared
2025-02-03 18:07:20 +01:00
commit 50235b051f
17 changed files with 509 additions and 0 deletions

15
build.sbt Normal file
View File

@@ -0,0 +1,15 @@
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / scalaVersion := "3.3.5"
lazy val root = (project in file("."))
.settings(
name := "Wordcount",
version := "0.1",
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor-typed" % "2.8.8",
"com.typesafe.akka" %% "akka-cluster-typed" % "2.8.8",
"com.typesafe.akka" %% "akka-serialization-jackson" % "2.8.8",
"ch.qos.logback" % "logback-classic" % "1.5.16",
)
)