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

be.ugent.rml.functions.MultipleRecordsFunctionExecutor Maven / Gradle / Ivy

package be.ugent.rml.functions;

import be.ugent.idlab.knows.dataio.record.Record;

import java.util.Map;

public interface MultipleRecordsFunctionExecutor {

    Object execute(Map records) throws Exception;

    /**
     * Returns {@code true} when a function is used in this executor that needs a special marker
     * to indicate "End-of-File" (EOF).
     */
    default boolean needsEOFMarker() {return false;}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy