All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lambda.query.ParallelQuery Maven / Gradle / Ivy

There is a newer version: 24.9.0
Show newest version
package org.lambda.query;

import com.spun.util.LambdaThreadLauncher;
import org.lambda.functions.Function1;

import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.atomic.AtomicInteger;

public class ParallelQuery
{
  public static  List where(Iterable list, final Function1 funct)
  {
    final ArrayList out = new ArrayList();
    final AtomicInteger done = new AtomicInteger();
    int count = 0;
    for (In i : list)
    {
      count++;
      final In piece = i;
      new LambdaThreadLauncher(() -> {
        if (funct.call(piece))
        {
          out.add(piece);
        }
        done.incrementAndGet();
      });
    }
    while (done.get() != count)
    {
      try
      {
        Thread.sleep(2);
      }
      catch (InterruptedException e)
      {
        // do nothing
      }
    }
    return out;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy