![JAR search and dependency download from the Maven repository](/logo.png)
net.rubyeye.xmemcached.command.ServerAddressAware Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xmemcached Show documentation
Show all versions of xmemcached Show documentation
Extreme performance modern memcached client for java
The newest version!
package net.rubyeye.xmemcached.command;
import java.net.InetSocketAddress;
import java.nio.ByteBuffer;
/**
* Server address aware interface.Command which implement this interface have these methods to
* getter/setter memcached's InetSocketAddress.
*
* @author boyan
*
*/
public interface ServerAddressAware {
public static final ByteBuffer VERSION = ByteBuffer.wrap("version\r\n".getBytes());
public InetSocketAddress getServer();
public void setServer(InetSocketAddress server);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy