Class MySQLBuilder


  • public class MySQLBuilder
    extends Object
    Entry point for building MySQL clients.

    NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.

    • Constructor Detail

      • MySQLBuilder

        public MySQLBuilder​(MySQLBuilder delegate)
      • MySQLBuilder

        public MySQLBuilder​(Object delegate)
    • Method Detail

      • hashCode

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

        public static Pool pool​(Handler<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));

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

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

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

        Returns:
      • client

        public static SqlClient client​(Handler<ClientBuilder<SqlClient>> handler)
        Build a client backed by a connection pool with the specified block argument. The block argument is usually a lambda that configures the provided builder

        Example usage: SqlClient client = PgBuilder.client(builder -> builder.connectingTo(connectOptions));

        Parameters:
        handler -
        Returns:
        the client as configured by the code block
      • client

        public static ClientBuilder<SqlClient> client()
        Provide a builder for MySQL client backed by a connection pool.

        Example usage: SqlClient client = PgBuilder.client().connectingTo(connectOptions).build()

        Returns: