Skip to content

Instantly share code, notes, and snippets.

@kennycason
kennycason / ParallelStreamSaturationTest.java
Created September 20, 2016 18:25
Demonstrate Java Parallel streams fall back to main thread in the event that all workers in common fork join pool are saturated.
package com.simplymeasured.gus.controller;
import java.util.Arrays;
/**
* Created by kenny on 9/20/16.
*
* Demonstrate Java Parallel streams fall back to main thread in the event that all workers in common fork join pool
* are saturated.
*/