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

java.lang.ref.ReferenceQueue Maven / Gradle / Ivy

The newest version!
package java.lang.ref;

public class ReferenceQueue {
    public ReferenceQueue() {}

    public Reference poll() {
        return null;
    }

    /**
     * @throws IllegalArgumentException
     * @throws InterruptedException
     */
    public Reference remove(long timeout) throws IllegalArgumentException, InterruptedException {
        return null;
    }

    /**
     * @throws InterruptedException
     */
    public Reference remove() throws InterruptedException {
        return null;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy