Akka implementation for handling streaming data on the JVM
The Akka Streams library already comes with quite a wealth of documentation. However, the main problem for me is that …
scala akka-streamI am currently working with Akka Stream Kafka to interact with kafka and I was wonderings what were the differences …
scala akka-stream apache-kafka-streams typesafe stream-processingI would like to create a Source and later push elements on it, like in: val src = ... // create the Source …
scala akka akka-stream akka-httpI know akka-http libraries marshal and unmarshal to class type while processing request.But now, I need to read request-parameters …
scala akka-stream akka-httpakka-http represents a file uploaded using multipart/form-data encoding as Source[ByteString, Any]. I need to unmarshal it using Java …
scala akka akka-streamI'm trying to make sense of the error(s) I'm seeing below, and to learn how to fix it. could …
scala playframework playframework-2.0 akka akka-streamI'm reading a csv file. I am using Akka Streams to do this so that I can create a graph …
scala akka akka-streamCan anyone please explain me difference between map and mapAsync w.r.t AKKA stream? In the documentation it is …
scala akka-streamI'm trying to understand how to use the new akka.http library. I would like to send an http request …
scala http akka akka-streamIt's possible to create sources and sinks from actors using Source.actorPublisher() and Sink.actorSubscriber() methods respectively. But is it …
scala akka akka-stream