sun.net.spi.nameservice.NameService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core-io Show documentation
Show all versions of core-io Show documentation
The official Couchbase JVM Core IO Library
// SPDX-License-Identifier: BSD-3-Clause
package sun.net.spi.nameservice;
import java.net.InetAddress;
import java.net.UnknownHostException;
public interface NameService {
InetAddress[] lookupAllHostAddr(String var1) throws UnknownHostException;
String getHostByAddr(byte[] var1) throws UnknownHostException;
}