![JAR search and dependency download from the Maven repository](/logo.png)
com.github.tobato.fastdfs.proto.tracker.TrackerGetStoreStorageCommand Maven / Gradle / Ivy
package com.github.tobato.fastdfs.proto.tracker;
import com.github.tobato.fastdfs.domain.StorageNode;
import com.github.tobato.fastdfs.proto.AbstractFdfsCommand;
import com.github.tobato.fastdfs.proto.FdfsResponse;
import com.github.tobato.fastdfs.proto.tracker.internal.TrackerGetStoreStorageRequest;
import com.github.tobato.fastdfs.proto.tracker.internal.TrackerGetStoreStorageWithGroupRequest;
/**
* 获取存储节点命令
*
* @author tobato
*
*/
public class TrackerGetStoreStorageCommand extends AbstractFdfsCommand {
public TrackerGetStoreStorageCommand(String groupName) {
super.request = new TrackerGetStoreStorageWithGroupRequest(groupName);
super.response = new FdfsResponse() {
// default response
};
}
public TrackerGetStoreStorageCommand() {
super.request = new TrackerGetStoreStorageRequest();
super.response = new FdfsResponse() {
// default response
};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy