February 2018
Intermediate to advanced
552 pages
13h 46m
English
Before moving into the integration of Akka Streams to the Play Framework web application, we will recollect our knowledge about Akka Streams API basics here.
The Akka Streams API has predominantly the following three components:
Source is a Producer of a streaming data and has only one Output and no Input points. Sink is a Consumer of a streaming data and has only one Input and no Output.
Flow is a connector or mediator between Source and Sink for a streaming data and has a one Input and one Output.
Apart from these three components, the Akka Streams API has few more components:
Fan-In function has two Inputs and one Output. This means that it takes ...
Read now
Unlock full access