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

com.github.phantomthief.pool.Pooled Maven / Gradle / Ivy

There is a newer version: 0.1.19
Show newest version
package com.github.phantomthief.pool;

import java.util.function.Supplier;

import javax.annotation.Nonnull;

/**
 * @author w.vela
 * Created on 2017-10-19.
 */
public interface Pooled extends Supplier {

    @Nonnull
    @Override
    T get();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy