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

com.qiniu.service.interfaces.ILineProcess Maven / Gradle / Ivy

There is a newer version: 8.4.8
Show newest version
package com.qiniu.service.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 setRetryCount(int retryCount) {}

    default void setSaveTag(String saveTag) {}

    void processLine(List list) throws IOException;

    default void setNextProcessor(ILineProcess> nextProcessor) {}

    void closeResource();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy