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

org.infinispan.commons.executors.ThreadPoolExecutorFactory Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.commons.executors;

import java.util.concurrent.ExecutorService;
import java.util.concurrent.ThreadFactory;

/**
 * @author Galder Zamarreño
 */
public interface ThreadPoolExecutorFactory {

   T createExecutor(ThreadFactory factory);

   /**
    * Validate parameters for the thread pool executor factory
    */
   void validate();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy