com.github.phantomthief.pool.Pooled Maven / Gradle / Ivy
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();
}