Jedi Values in Akka Streams | Rock the JVM

Written form to keep for later: https://blog.rockthejvm.com/the-brill... This video is for Scala programmers who have just started with Akka Streams and know the very basic: creating streaming components, plugging them together and running a graph. This video addresses one of the hardest topics in Akka Streams in a non-psychobabble way. I'll show you what "Jedi values" are, how they work, how they are (or aren't) connected to the actual elements that go through a graph and why they were added in the first place. Follow Rock the JVM on: LinkedIn:   / rockthejvm   Twitter:   / rockthejvm   Blog: https://rockthejvm.com/blog ------------------------------------------------------------------------- Home: https://rockthejvm.com ------------------------------------------------------------------------- /////////////////////////////////////////////// // Libraries code for build.sbt: val akkaVersion = "2.6.4" libraryDependencies ++= Seq( // akka streams "com.typesafe.akka" %% "akka-stream" % akkaVersion ) ///////////////////////////////////////////////