Skip to content

A utility class that replicates the Stream's parallel() functionality found in Java 8, for projects that can't upgrade to Java 8

Notifications You must be signed in to change notification settings

bluedevil2k/Parallel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

Parallel

A utility class that replicates the Stream's parallel() functionality found in Java 8, for projects that can't upgrade to Java 8.

Example Usage

Parallel.forEach(elems,
    new Parallel.Function<Integer>() {
        public void execute(Integer param) {
            System.out.println(param);
        };
    });

About

A utility class that replicates the Stream's parallel() functionality found in Java 8, for projects that can't upgrade to Java 8

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages