org.wildfly.swarm.config.io.BufferPoolSupplier Maven / Gradle / Ivy
The newest version!
package org.wildfly.swarm.config.io;
import java.lang.FunctionalInterface;
@FunctionalInterface
public interface BufferPoolSupplier {
/**
* Constructed instance of BufferPool resource
*
* @return The instance
*/
public BufferPool get();
}