Package io.vertx.mutiny.sqlclient
Class SqlClient
java.lang.Object
io.vertx.mutiny.sqlclient.SqlClient
- All Implemented Interfaces:
MutinyDelegate
- Direct Known Subclasses:
Pool
,SqlConnection
Defines common SQL client operations with a database server.
NOTE: This class has been automatically generated from the
original
non Mutiny-ified interface using Vert.x codegen.-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionio.smallrye.mutiny.Uni<Void>
close()
Close the client and release the associated resources.Blocking variant ofclose()
.void
Variant ofclose()
that ignores the result of the operation.boolean
io.vertx.sqlclient.SqlClient
int
hashCode()
static SqlClient
newInstance
(io.vertx.sqlclient.SqlClient arg) preparedQuery
(String sql) preparedQuery
(String sql, io.vertx.sqlclient.PrepareOptions options) toString()
-
Field Details
-
__TYPE_ARG
-
-
Constructor Details
-
SqlClient
public SqlClient(io.vertx.sqlclient.SqlClient delegate) -
SqlClient
-
-
Method Details
-
getDelegate
public io.vertx.sqlclient.SqlClient getDelegate()- Specified by:
getDelegate
in interfaceMutinyDelegate
- Returns:
- the delegate used by this Mutiny object of generated type
-
toString
-
equals
-
hashCode
public int hashCode() -
query
- Parameters:
sql
-- Returns:
- the query
-
preparedQuery
- Parameters:
sql
-- Returns:
- the prepared query
-
preparedQuery
public PreparedQuery<RowSet<Row>> preparedQuery(String sql, io.vertx.sqlclient.PrepareOptions options) - Parameters:
sql
-options
-- Returns:
- the prepared query
-
close
Close the client and release the associated resources.Unlike the bare Vert.x variant, this method returns a
Uni
. Don't forget to subscribe on it to trigger the operation.- Returns:
- the
uni
firing the result of the operation when completed, or a failure if the operation failed.
-
closeAndAwait
Blocking variant ofclose()
.This method waits for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in a RuntimeException).
- Returns:
- the Void instance produced by the operation.
-
closeAndForget
public void closeAndForget() -
newInstance
-