Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 371 Bytes

File metadata and controls

12 lines (11 loc) · 371 Bytes

BulkDataOperationsWithStreamAPI

/* Java - 8 *

  • New java.util.Stream class added to Java 8
  • Does filter/map/reduce operations on collections
  • Stream API allows sequential & parallel execution
  • Best feature if working with Big Data to filter out
  • Parallel processing values not usually in order
  • Can be very helpful when working w/ huge collections

*/