org.xnio.XnioProvider Maven / Gradle / Ivy
package org.xnio;
/**
* An XNIO provider, used by the service loader discovery mechanism.
*
* @author David M. Lloyd
*/
public interface XnioProvider {
/**
* Get the XNIO instance for this provider.
*
* @return the XNIO instance
*/
Xnio getInstance();
/**
* Get the provider name.
*
* @return the name
*/
String getName();
}