io.quarkus.grpc.runtime.config.Enabled Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-grpc Show documentation
Show all versions of quarkus-grpc Show documentation
Serve and consume gRPC services
package io.quarkus.grpc.runtime.config;
public interface Enabled {
boolean isEnabled();
static boolean isEnabled(Enabled enabled) {
return enabled != null && enabled.isEnabled();
}
}