apoc.export.util.Reporter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apoc-common Show documentation
Show all versions of apoc-common Show documentation
Data types package for Neo4j Procedures
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