org.xnio.Pool Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xnio-api Show documentation
Show all versions of xnio-api Show documentation
The API JAR of the XNIO project
package org.xnio;
/**
* A generic pooled resource manager.
*
* @param the resource type
*
* @apiviz.landmark
*/
public interface Pool {
/**
* Allocate a resource from the pool.
*
* @return the resource
*/
Pooled allocate();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy