Package io.vertx.mutiny.oracleclient
Class OracleBuilder
java.lang.Object
io.vertx.mutiny.oracleclient.OracleBuilder
- All Implemented Interfaces:
MutinyDelegate
Entry point for building Oracle clients.
NOTE: This class has been automatically generated from the original non Mutiny-ified interface.
- See Also:
-
OracleBuilder
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionOracleBuilder(io.vertx.oracleclient.OracleBuilder delegate) Create a new instance ofOracleBuilderdelegating to the given (non-null) instance ofOracleBuilder.OracleBuilder(Object delegate) -
Method Summary
Modifier and TypeMethodDescriptionbooleanio.vertx.oracleclient.OracleBuilderGet the delegate instance.inthashCode()static OracleBuildernewInstance(io.vertx.oracleclient.OracleBuilder delegate) Creates a new instance of theOracleBuilder.static ClientBuilder<Pool>pool()Provide a builder for Oracle pool of connectionsstatic Poolpool(Consumer<ClientBuilder<Pool>> block) Build a pool with the specifiedblockargument.toString()
-
Field Details
-
__TYPE_ARG
-
-
Constructor Details
-
OracleBuilder
public OracleBuilder(io.vertx.oracleclient.OracleBuilder delegate) Create a new instance ofOracleBuilderdelegating to the given (non-null) instance ofOracleBuilder. -
OracleBuilder
-
-
Method Details
-
getDelegate
public io.vertx.oracleclient.OracleBuilder getDelegate()Get the delegate instance.This method returns the instance on which this shim is delegating the calls. And so, give you access to the bare API.
- Specified by:
getDelegatein interfaceMutinyDelegate- Returns:
- the delegate instance
-
pool
Build a pool with the specifiedblockargument. Theblockargument is usually a lambda that configures the provided builderExample usage:
Pool pool = PgBuilder.pool(builder -> builder.connectingTo(connectOptions));- Returns:
- the pool as configured by the code
block
-
pool
Provide a builder for Oracle pool of connectionsExample usage:
Pool pool = PgBuilder.pool().connectingTo(connectOptions).build() -
newInstance
Creates a new instance of theOracleBuilder. -
hashCode
public int hashCode() -
equals
-
toString
-