io.quarkus.reactive.datasource.runtime.DataSourceReactiveBuildTimeConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-reactive-datasource Show documentation
Show all versions of quarkus-reactive-datasource Show documentation
Configure your reactive datasources
The newest version!
package io.quarkus.reactive.datasource.runtime;
import io.quarkus.runtime.annotations.ConfigGroup;
import io.smallrye.config.WithDefault;
import io.smallrye.config.WithParentName;
@ConfigGroup
public interface DataSourceReactiveBuildTimeConfig {
/**
* If we create a Reactive datasource for this datasource.
*/
@WithDefault("true")
@WithParentName
boolean enabled();
}