Skip to content

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

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages