Uses of Interface
io.objectbox.TxCallback
Packages that use TxCallback
Package
Description
ObjectBox is an an easy to use, object-oriented lightweight database and a full alternative to SQLite.
-
Uses of TxCallback in io.objectbox
Fields in io.objectbox declared as TxCallbackModifier and TypeFieldDescriptionprivate final TxCallback<?> BoxStore.failedReadTxAttemptCallback(package private) TxCallback<?> BoxStoreBuilder.failedReadTxAttemptCallbackMethods in io.objectbox that return TxCallbackMethods in io.objectbox with parameters of type TxCallbackModifier and TypeMethodDescription<R> voidBoxStore.callInTxAsync(Callable<R> callable, TxCallback<R> callback) Runs the given Runnable as a transaction in a separate thread.BoxStoreBuilder.failedReadTxAttemptCallback(TxCallback<?> failedReadTxAttemptCallback) Define a callback for failed read transactions during retires (see alsoBoxStoreBuilder.queryAttempts(int)).voidBoxStore.runInTxAsync(Runnable runnable, TxCallback<Void> callback) Runs the given Runnable as a transaction in a separate thread.