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

marcel.util.concurrent.ExecutorServiceFactory Maven / Gradle / Ivy

The newest version!
package marcel.util.concurrent;

import java.util.concurrent.ExecutorService;

/**
 * Interface to create a new executor
 */
public interface ExecutorServiceFactory {

  /**
   * Creates a new ExecutorService
   * @return the newly created executor service
   */
  ExecutorService newInstance();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy