com.github.tobato.fastdfs.proto.FdfsCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastdfs-client Show documentation
Show all versions of fastdfs-client Show documentation
基于yuqih发布的代码与fastdfs-client 官方1.26版本的重构
package com.github.tobato.fastdfs.proto;
import com.github.tobato.fastdfs.conn.Connection;
/**
* Fdfs交易命令抽象
*
* @author tobato
*
*/
public interface FdfsCommand {
/** 执行交易 */
public T execute(Connection conn);
}