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

com.aerospike.mapper.tools.Processor Maven / Gradle / Ivy

package com.aerospike.mapper.tools;

public interface Processor {
    /**
     * Process the given record.
     *
     * @param data - the record to be processed
     * @return true if further records should be processed, false if the processing loop should abort.
     */
    boolean process(T data);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy