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

io.smallrye.mutiny.vertx.codegen.MutinyGeneratorLoader Maven / Gradle / Ivy

There is a newer version: 3.15.1
Show newest version
package io.smallrye.mutiny.vertx.codegen;

import java.util.stream.Stream;

import javax.annotation.processing.ProcessingEnvironment;

import io.vertx.codegen.Generator;
import io.vertx.codegen.GeneratorLoader;

public class MutinyGeneratorLoader implements GeneratorLoader {
    @Override
    public Stream> loadGenerators(ProcessingEnvironment processingEnv) {
        return Stream.of(new MutinyGenerator());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy