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

org.xnio.XnioProvider Maven / Gradle / Ivy

There is a newer version: 62
Show newest version

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy