Java 8 Features
1. forEach method - this methods takes method as an arguement.
2. functional interface - this allows us to declare only 1 method in the interface. it basically implements I (Interface Segregation) principle from SOLID principles.
Question: Example of Stream API with funcational interface to sort the values and then multiply by 2.
Question: what is peek() in stream api?
https://docs.oracle.com/javase/tutorial/collections/streams/reduction.html
1. forEach method - this methods takes method as an arguement.
2. functional interface - this allows us to declare only 1 method in the interface. it basically implements I (Interface Segregation) principle from SOLID principles.
Executing Streams in Parallel
You can execute streams in serial or in parallel. When a stream executes in parallel, the Java runtime partitions the stream into multiple substreams. Aggregate operations iterate over and process these substreams in parallel and then combine the results.
When you create a stream, it is always a serial stream unless otherwise specified. To create a parallel stream, invoke the operation
Collection.parallelStream
. Alternatively, invoke the operation BaseStream.parallel
. For example, the following statement calculates the average age of all male members in parallel:double average = roster .parallelStream() .filter(p -> p.getGender() == Person.Sex.MALE) .mapToInt(Person::getAge) .average() .getAsDouble();
Concurrent Reduction
Consider again the following example (which is described in the section Reduction) that groups members by gender. This example invokes the
collect
operation, which reduces the collection roster
into a Map
:Map<Person.Sex, List<Person>> byGender = roster .stream() .collect( Collectors.groupingBy(Person::getGender));
The following is the parallel equivalent:
ConcurrentMap<Person.Sex, List<Person>> byGender = roster .parallelStream() .collect( Collectors.groupingByConcurrent(Person::getGender));
This is called a concurrent reduction. The Java runtime performs a concurrent reduction if all of the the following are true for a particular pipeline that contains the
collect
operation:- The stream is parallel.
- The parameter of the
collect
operation, the collector, has the characteristicCollector.Characteristics.CONCURRENT
. To determine the characteristics of a collector, invoke theCollector.characteristics
method. - Either the stream is unordered, or the collector has the characteristic
Collector.Characteristics.UNORDERED
. To ensure that the stream is unordered, invoke theBaseStream.unordered
operation.
Note: This example returns an instance of
ConcurrentMap
instead of Map
and invokes the groupingByConcurrent
operation instead of groupingBy
. (See the section Concurrent Collections for more information about ConcurrentMap
.) Unlike the operation groupingByConcurrent
, the operation groupingBy
performs poorly with parallel streams. (This is because it operates by merging two maps by key, which is computationally expensive.) Similarly, the operation Collectors.toConcurrentMap
performs better with parallel streams than the operation Collectors.toMap
.Ordering
The order in which a pipeline processes the elements of a stream depends on whether the stream is executed in serial or in parallel, the source of the stream, and intermediate operations. For example, consider the following example that prints the elements of an instance of
ArrayList
with the forEach
operation several times:Integer[] intArray = {1, 2, 3, 4, 5, 6, 7, 8 }; List<Integer> listOfIntegers = new ArrayList<>(Arrays.asList(intArray)); System.out.println("listOfIntegers:"); listOfIntegers .stream() .forEach(e -> System.out.print(e + " ")); System.out.println(""); System.out.println("listOfIntegers sorted in reverse order:"); Comparator<Integer> normal = Integer::compare; Comparator<Integer> reversed = normal.reversed(); Collections.sort(listOfIntegers, reversed); listOfIntegers .stream() .forEach(e -> System.out.print(e + " ")); System.out.println(""); System.out.println("Parallel stream"); listOfIntegers .parallelStream() .forEach(e -> System.out.print(e + " ")); System.out.println(""); System.out.println("Another parallel stream:"); listOfIntegers .parallelStream() .forEach(e -> System.out.print(e + " ")); System.out.println(""); System.out.println("With forEachOrdered:"); listOfIntegers .parallelStream() .forEachOrdered(e -> System.out.print(e + " ")); System.out.println("");
This example consists of five pipelines. It prints output similar to the following:
listOfIntegers: 1 2 3 4 5 6 7 8 listOfIntegers sorted in reverse order: 8 7 6 5 4 3 2 1 Parallel stream: 3 4 1 6 2 5 7 8 Another parallel stream: 6 3 1 5 7 8 4 2 With forEachOrdered: 8 7 6 5 4 3 2 1
This example does the following:
- The first pipeline prints the elements of the list
listOfIntegers
in the order that they were added to the list. - The second pipeline prints the elements of
listOfIntegers
after it was sorted by the methodCollections.sort
. - The third and fourth pipelines print the elements of the list in an apparently random order. Remember that stream operations use internal iteration when processing elements of a stream. Consequently, when you execute a stream in parallel, the Java compiler and runtime determine the order in which to process the stream's elements to maximize the benefits of parallel computing unless otherwise specified by the stream operation.
- The fifth pipeline uses the method
forEachOrdered
, which processes the elements of the stream in the order specified by its source, regardless of whether you executed the stream in serial or parallel. Note that you may lose the benefits of parallelism if you use operations likeforEachOrdered
with parallel streams.
Side Effects
A method or an expression has a side effect if, in addition to returning or producing a value, it also modifies the state of the computer. Examples include mutable reductions (operations that use the
collect
operation; see the section Reduction for more information) as well as invoking the System.out.println
method for debugging. The JDK handles certain side effects in pipelines well. In particular, the collect
method is designed to perform the most common stream operations that have side effects in a parallel-safe manner. Operations like forEach
and peek
are designed for side effects; a lambda expression that returns void, such as one that invokes System.out.println
, can do nothing but have side effects. Even so, you should use the forEach
and peek
operations with care; if you use one of these operations with a parallel stream, then the Java runtime may invoke the lambda expression that you specified as its parameter concurrently from multiple threads. In addition, never pass as parameters lambda expressions that have side effects in operations such as filter
and map
. The following sections discuss interference and stateful lambda expressions, both of which can be sources of side effects and can return inconsistent or unpredictable results, especially in parallel streams. However, the concept of laziness is discussed first, because it has a direct effect on interference.Question: Example of Stream API with funcational interface to sort the values and then multiply by 2.
Question: what is peek() in stream api?
https://docs.oracle.com/javase/tutorial/collections/streams/reduction.html
0 comments :
Post a Comment