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

io.logz.sawmill.Processor Maven / Gradle / Ivy

The newest version!
package io.logz.sawmill;

import java.util.Map;

public interface Processor {
    ProcessResult process(Doc doc) throws InterruptedException;

    interface Factory {
        Processor create(Map config);
    }

    interface Configuration {
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy