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

com.github.unidbg.worker.WorkerPool Maven / Gradle / Ivy

There is a newer version: 0.9.8
Show newest version
package com.github.unidbg.worker;

import java.io.Closeable;
import java.util.concurrent.TimeUnit;

public interface WorkerPool extends Closeable {

     T borrow(long timeout, TimeUnit unit);

    void release(Worker worker);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy