com.github.tobato.fastdfs.proto.tracker.TrackerListGroupsCommand 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.tracker;
import java.util.List;
import com.github.tobato.fastdfs.domain.GroupState;
import com.github.tobato.fastdfs.proto.AbstractFdfsCommand;
import com.github.tobato.fastdfs.proto.tracker.internal.TrackerListGroupsRequest;
import com.github.tobato.fastdfs.proto.tracker.internal.TrackerListGroupsResponse;
/**
* 列出组命令
*
* @author tobato
*
*/
public class TrackerListGroupsCommand extends AbstractFdfsCommand> {
public TrackerListGroupsCommand() {
super.request = new TrackerListGroupsRequest();
super.response = new TrackerListGroupsResponse();
}
}