Package io.vertx.rxjava3.sqlclient
Class Transaction
- java.lang.Object
-
- io.vertx.rxjava3.sqlclient.Transaction
-
- All Implemented Interfaces:
RxDelegate
public class Transaction extends Object implements RxDelegate
A transaction. NOTE: This class has been automatically generated from theoriginal
non RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<Transaction>
__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description Transaction(Transaction delegate)
Transaction(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description io.reactivex.rxjava3.core.Completable
commit()
Likecommit()
with an handler to be notified when the transaction commit has completedio.reactivex.rxjava3.core.Completable
completion()
Likecompletion()
but with a callbackboolean
equals(Object o)
Transaction
getDelegate()
int
hashCode()
static Transaction
newInstance(Transaction arg)
io.reactivex.rxjava3.core.Completable
rollback()
Likerollback()
with an handler to be notified when the transaction rollback has completedio.reactivex.rxjava3.core.Completable
rxCommit()
Likecommit()
with an handler to be notified when the transaction commit has completedio.reactivex.rxjava3.core.Completable
rxCompletion()
Likecompletion()
but with a callbackio.reactivex.rxjava3.core.Completable
rxRollback()
Likerollback()
with an handler to be notified when the transaction rollback has completedString
toString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<Transaction> __TYPE_ARG
-
-
Constructor Detail
-
Transaction
public Transaction(Transaction delegate)
-
Transaction
public Transaction(Object delegate)
-
-
Method Detail
-
getDelegate
public Transaction getDelegate()
- Specified by:
getDelegate
in interfaceRxDelegate
-
commit
public io.reactivex.rxjava3.core.Completable commit()
Likecommit()
with an handler to be notified when the transaction commit has completed- Returns:
-
rxCommit
public io.reactivex.rxjava3.core.Completable rxCommit()
Likecommit()
with an handler to be notified when the transaction commit has completed- Returns:
-
rollback
public io.reactivex.rxjava3.core.Completable rollback()
Likerollback()
with an handler to be notified when the transaction rollback has completed- Returns:
-
rxRollback
public io.reactivex.rxjava3.core.Completable rxRollback()
Likerollback()
with an handler to be notified when the transaction rollback has completed- Returns:
-
completion
public io.reactivex.rxjava3.core.Completable completion()
Likecompletion()
but with a callback- Returns:
-
rxCompletion
public io.reactivex.rxjava3.core.Completable rxCompletion()
Likecompletion()
but with a callback- Returns:
-
newInstance
public static Transaction newInstance(Transaction arg)
-
-