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

com.qinsoft.qmemache.QMemcacheNative Maven / Gradle / Ivy

There is a newer version: 1.0.1-beta1
Show newest version
package com.qinsoft.qmemache;

import java.io.IOException;

/**
 * QMemcache通信基类
 */
public abstract class QMemcacheNative {

   public abstract void connect() throws IOException;

   public abstract void disconnect() throws IOException;

   public abstract void sendRequest(QMemecacheRequest request) throws IOException;

   public abstract QMemcacheResponse recvResponse() throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy