Package io.vertx.rxjava3.db2client
Class DB2Connection
- java.lang.Object
-
- io.vertx.rxjava3.sqlclient.SqlClient
-
- io.vertx.rxjava3.sqlclient.SqlConnection
-
- io.vertx.rxjava3.db2client.DB2Connection
-
public class DB2Connection extends SqlConnection
A connection to DB2 server. NOTE: This class has been automatically generated from theoriginalnon RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<DB2Connection>__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description DB2Connection(DB2Connection delegate)DB2Connection(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DB2Connectioncast(SqlConnection sqlConnection)Cast a toDB2Connection.DB2ConnectioncloseHandler(Handler<Void> handler)Set an handler called when the connection is closed.static io.reactivex.rxjava3.core.Single<DB2Connection>connect(Vertx vertx, DB2ConnectOptions connectOptions)Create a connection to DB2 server with the givenconnectOptions.static io.reactivex.rxjava3.core.Single<DB2Connection>connect(Vertx vertx, String connectionUri)Likeconnect(io.vertx.rxjava3.core.Vertx, io.vertx.db2client.DB2ConnectOptions)with options build fromconnectionUri.io.reactivex.rxjava3.core.Completabledebug()Send a DEBUG command to dump debug information to the server's stdout.booleanequals(Object o)DB2ConnectionexceptionHandler(Handler<Throwable> handler)Set an handler called with connection errors.DB2ConnectiongetDelegate()inthashCode()static DB2ConnectionnewInstance(DB2Connection arg)io.reactivex.rxjava3.core.Completableping()Send a PING command to check if the server is alive.io.reactivex.rxjava3.core.Single<PreparedStatement>prepare(String sql)Create a prepared statement using the givensqlstring.static io.reactivex.rxjava3.core.Single<DB2Connection>rxConnect(Vertx vertx, DB2ConnectOptions connectOptions)Create a connection to DB2 server with the givenconnectOptions.static io.reactivex.rxjava3.core.Single<DB2Connection>rxConnect(Vertx vertx, String connectionUri)Likeconnect(io.vertx.rxjava3.core.Vertx, io.vertx.db2client.DB2ConnectOptions)with options build fromconnectionUri.io.reactivex.rxjava3.core.CompletablerxDebug()Send a DEBUG command to dump debug information to the server's stdout.io.reactivex.rxjava3.core.CompletablerxPing()Send a PING command to check if the server is alive.io.reactivex.rxjava3.core.Single<PreparedStatement>rxPrepare(String sql)Create a prepared statement using the givensqlstring.StringtoString()-
Methods inherited from class io.vertx.rxjava3.sqlclient.SqlConnection
begin, close, databaseMetadata, isSSL, newInstance, prepare, rxBegin, rxClose, rxPrepare, transaction
-
Methods inherited from class io.vertx.rxjava3.sqlclient.SqlClient
newInstance, preparedQuery, preparedQuery, query
-
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<DB2Connection> __TYPE_ARG
-
-
Constructor Detail
-
DB2Connection
public DB2Connection(DB2Connection delegate)
-
DB2Connection
public DB2Connection(Object delegate)
-
-
Method Detail
-
toString
public String toString()
- Overrides:
toStringin classSqlConnection
-
equals
public boolean equals(Object o)
- Overrides:
equalsin classSqlConnection
-
hashCode
public int hashCode()
- Overrides:
hashCodein classSqlConnection
-
getDelegate
public DB2Connection getDelegate()
- Overrides:
getDelegatein classSqlConnection
-
connect
public static io.reactivex.rxjava3.core.Single<DB2Connection> connect(Vertx vertx, DB2ConnectOptions connectOptions)
Create a connection to DB2 server with the givenconnectOptions.- Parameters:
vertx- the vertx instanceconnectOptions- the options for the connection- Returns:
-
rxConnect
public static io.reactivex.rxjava3.core.Single<DB2Connection> rxConnect(Vertx vertx, DB2ConnectOptions connectOptions)
Create a connection to DB2 server with the givenconnectOptions.- Parameters:
vertx- the vertx instanceconnectOptions- the options for the connection- Returns:
-
connect
public static io.reactivex.rxjava3.core.Single<DB2Connection> connect(Vertx vertx, String connectionUri)
Likeconnect(io.vertx.rxjava3.core.Vertx, io.vertx.db2client.DB2ConnectOptions)with options build fromconnectionUri.- Parameters:
vertx-connectionUri-- Returns:
-
rxConnect
public static io.reactivex.rxjava3.core.Single<DB2Connection> rxConnect(Vertx vertx, String connectionUri)
Likeconnect(io.vertx.rxjava3.core.Vertx, io.vertx.db2client.DB2ConnectOptions)with options build fromconnectionUri.- Parameters:
vertx-connectionUri-- Returns:
-
prepare
public io.reactivex.rxjava3.core.Single<PreparedStatement> prepare(String sql)
Description copied from class:SqlConnectionCreate a prepared statement using the givensqlstring.- Overrides:
preparein classSqlConnection- Parameters:
sql- the sql- Returns:
-
rxPrepare
public io.reactivex.rxjava3.core.Single<PreparedStatement> rxPrepare(String sql)
Description copied from class:SqlConnectionCreate a prepared statement using the givensqlstring.- Overrides:
rxPreparein classSqlConnection- Parameters:
sql- the sql- Returns:
-
exceptionHandler
public DB2Connection exceptionHandler(Handler<Throwable> handler)
Description copied from class:SqlConnectionSet an handler called with connection errors.- Overrides:
exceptionHandlerin classSqlConnection- Parameters:
handler- the handler- Returns:
- a reference to this, so the API can be used fluently
-
closeHandler
public DB2Connection closeHandler(Handler<Void> handler)
Description copied from class:SqlConnectionSet an handler called when the connection is closed.- Overrides:
closeHandlerin classSqlConnection- Parameters:
handler- the handler- Returns:
- a reference to this, so the API can be used fluently
-
ping
public io.reactivex.rxjava3.core.Completable ping()
Send a PING command to check if the server is alive.- Returns:
- a reference to this, so the API can be used fluently
-
rxPing
public io.reactivex.rxjava3.core.Completable rxPing()
Send a PING command to check if the server is alive.- Returns:
- a reference to this, so the API can be used fluently
-
debug
public io.reactivex.rxjava3.core.Completable debug()
Send a DEBUG command to dump debug information to the server's stdout.- Returns:
- a reference to this, so the API can be used fluently
-
rxDebug
public io.reactivex.rxjava3.core.Completable rxDebug()
Send a DEBUG command to dump debug information to the server's stdout.- Returns:
- a reference to this, so the API can be used fluently
-
cast
public static DB2Connection cast(SqlConnection sqlConnection)
Cast a toDB2Connection. This is mostly useful for Vert.x generated APIs like RxJava/Mutiny.- Parameters:
sqlConnection- the connection to cast- Returns:
- a
instance
-
newInstance
public static DB2Connection newInstance(DB2Connection arg)
-
-