com.github.unidbg.worker.WorkerPool Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unidbg Show documentation
Show all versions of unidbg Show documentation
Allows you to emulate an Android ARM32 and/or ARM64 native library
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