September 2016
Beginner
448 pages
14h 23m
English
In this chapter
In chapter 12 you learned how to integrate Akka applications with external services using requests and responses. In this chapter we’ll look at integrating external services using streams of data.
A stream of data is a sequence of elements that could have no end. Conceptually, a stream is transient in that it only exists as long as there’s a producer providing elements to the stream and a consumer reading elements from the stream.
One of the challenges for applications that consume streams is that you can’t know beforehand ...