Class OracleBuilder

java.lang.Object
io.vertx.mutiny.oracleclient.OracleBuilder
All Implemented Interfaces:
MutinyDelegate

public class OracleBuilder extends Object implements 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 Details

  • Constructor Details

    • OracleBuilder

      public OracleBuilder(io.vertx.oracleclient.OracleBuilder delegate)
      Create a new instance of OracleBuilder delegating to the given (non-null) instance of OracleBuilder.
    • OracleBuilder

      public OracleBuilder(Object delegate)
  • 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:
      getDelegate in interface MutinyDelegate
      Returns:
      the delegate instance
    • pool

      public static Pool pool(Consumer<ClientBuilder<Pool>> block)
      Build a pool with the specified block argument. The block argument is usually a lambda that configures the provided builder

      Example usage: Pool pool = PgBuilder.pool(builder -> builder.connectingTo(connectOptions));

      Returns:
      the pool as configured by the code block
    • pool

      public static ClientBuilder<Pool> pool()
      Provide a builder for Oracle pool of connections

      Example usage: Pool pool = PgBuilder.pool().connectingTo(connectOptions).build()

    • newInstance

      public static OracleBuilder newInstance(io.vertx.oracleclient.OracleBuilder delegate)
      Creates a new instance of the OracleBuilder.
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object