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

apoc.export.util.Reporter Maven / Gradle / Ivy

There is a newer version: 5.25.1
Show newest version
package apoc.export.util;

import apoc.result.ProgressInfo;

/**
 * @author mh
 * @since 22.05.16
 */
public interface Reporter {
    void progress(String msg);
    void update(long nodes, long rels, long properties);

    void done();

    ProgressInfo getTotal();

    void nextRow();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy