org.geneweaver.io.writer.Export Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gweaver-stream-io Show documentation
Show all versions of gweaver-stream-io Show documentation
The IO bundle for Geneweaver.
package org.geneweaver.io.writer;
import java.nio.file.Path;
@FunctionalInterface
public interface Export {
/**
* Interface for customizing exports.
* @param path
* @param builder
* @return a message to be logged regarding the progress of the export.
* @throws Exception
*/
String export(ExportBuilder builder, Path path) throws Exception;
}