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

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

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

import java.io.*;

public interface IResultOutput {

    void setRetryTimes(int retryTimes);

    String getPrefix();

    String getSuffix();

    T getWriter(String key);

    void closeWriters();

    void writeKeyFile(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 - 2025 Weber Informatics LLC | Privacy Policy