-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

Mastering Concurrency Programming with Java 9, Second Edition
By :

A stream is a sequence of data (is not a data structure) that allows you to apply a sequence of operations in a sequential or concurrent way to filter, convert, sort, reduce, or organize those elements to obtain a final object. For example, if you have a stream with the data of your employees, you can use a stream to:
Streams are greatly influenced by functional programming (the Scala programming language provides a very similar mechanism), and work with lambda expressions. Stream API resembles LINQ (short for Language-Integrated Query) queries available in C# language and, to some extent, could be compared with SQL queries.
In the following sections, we will explain the basic characteristics...