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

com.qiniu.interfaces.IResultOutput Maven / Gradle / Ivy

There is a newer version: 8.4.8
Show newest version
package com.qiniu.interfaces;

import java.io.*;

public interface IResultOutput {

    void setRetryTimes(int retryTimes);

    String getSavePath();

    String getPrefix();

    String getSuffix();

    void preAddWriter(String key);

    void addWriter(String key) throws IOException;

    void closeWriters();

    void writeToKey(String key, String item, boolean flush) throws IOException;

    void writeSuccess(String item, boolean flush) throws IOException;

    void writeError(String item, boolean flush) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy