
com.qiniu.interfaces.ILineProcess Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qsuits Show documentation
Show all versions of qsuits Show documentation
qiniu-suits is a efficient tools for qiniu api implemented by java8.
package com.qiniu.interfaces;
import java.io.IOException;
import java.util.List;
import java.util.Map;
public interface ILineProcess {
ILineProcess clone() throws CloneNotSupportedException;
default String getProcessName() {
return "line_process";
}
default void setBatchSize(int batchSize) throws IOException {}
default void setRetryTimes(int retryTimes) {}
default void setSaveTag(String saveTag) {}
default void updateBucket(String bucket) {}
default void updateRmPrefix(String rmPrefix) {}
default void updateSavePath(String savePath) throws IOException {}
void processLine(List list) throws IOException;
default void setNextProcessor(ILineProcess
© 2015 - 2025 Weber Informatics LLC | Privacy Policy