python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Akka streams RestartSink doesn't seem to be restarting during failures
I am playing around with handling errors in akka streams with restartable sources & sinks.
object Main extends App {
implicit val system: ActorSystem = ActorSystem("akka-streams-system"...
Wizard
Votes: 0
Answers: 1
How can an event sourced entity to subscribe to state changes in another entity?
I have an events-sourced entity (C) that needs to change its state in response to state changes in another entity of a different type (P). The logic to whether the state of C should actually change is...
Nimrod Sadeh
Votes: 0
Answers: 1
object stream is not a member of package akka
I've below build.sbt file -
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / scalaVersion := "2.13.7"
val akkaVersion = "2.6.18"
lazy val root = (project in file(&q...
Rajkumar Natarajan
Votes: 0
Answers: 0
Akka Streams split Stream for Error handling
I'm using akka http and streams to fulfill API requests.
When the request is invalid I want to return a 400 and if it's valid, i want to proceed with the computation and return the result afterwards.
...
zel873ju
Votes: 0
Answers: 1