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

io.quarkus.devtools.codestarts.CodestartPathLoader Maven / Gradle / Ivy

package io.quarkus.devtools.codestarts;

import java.io.IOException;
import java.nio.file.Path;

public interface CodestartPathLoader {
     T loadResourceAsPath(String name, PathConsumer consumer) throws IOException;

    interface PathConsumer {
        T consume(Path is) throws IOException;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy