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

io.quarkus.grpc.runtime.config.Enabled Maven / Gradle / Ivy

There is a newer version: 3.15.1
Show newest version
package io.quarkus.grpc.runtime.config;

public interface Enabled {
    boolean isEnabled();

    static boolean isEnabled(Enabled enabled) {
        return enabled != null && enabled.isEnabled();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy