Package io.quarkus.reactive.mysql.client
Interface MySQLPoolCreator
-
public interface MySQLPoolCreator
This interface is an integration point that allows users to use theVertx
,PoolOptions
andMySQLConnectOptions
objects configured automatically by Quarkus, in addition to a custom strategy for creating the finalMySQLPool
. Implementations of this class are meant to be used as CDI beans. If a bean of this type is used without aReactiveDataSource
qualifier, then it's applied to the default datasource, otherwise it applies to the datasource matching the name of the annotation.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
MySQLPoolCreator.Input
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description io.vertx.mysqlclient.MySQLPool
create(MySQLPoolCreator.Input input)
-
-
-
Method Detail
-
create
io.vertx.mysqlclient.MySQLPool create(MySQLPoolCreator.Input input)
-
-