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

net.elehack.gradle.science.ConfigurableOutputHandler.groovy Maven / Gradle / Ivy

The newest version!
package net.elehack.gradle.science

class ConfigurableOutputHandler extends ProcessOutputHandler {
    private Closure lineHandler

    ConfigurableOutputHandler(String name, Closure lh) {
        super(name)
        lineHandler = lh
    }

    @Override
    protected void handleLine(String line) {
        lineHandler(line, logger)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy