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

org.onetwo.common.spring.concurrent.ParallelTaskExecutor Maven / Gradle / Ivy

package org.onetwo.common.spring.concurrent;

import java.util.List;

public interface ParallelTaskExecutor {
	
	public List loadTaskList(int semaphoreCount);
	
	public void execute(T task);
	
	public void releaseSemaphore(T task);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy