Since: API Level 5
public interface

SQLiteTransactionListener

android.database.sqlite.SQLiteTransactionListener

Class Overview

A listener for transaction events.

Summary

Public Methods
abstract void onBegin()
Called immediately after the transaction begins.
abstract void onCommit()
Called immediately before commiting the transaction.
abstract void onRollback()
Called if the transaction is about to be rolled back.

Public Methods

public abstract void onBegin ()

Since: API Level 5

Called immediately after the transaction begins.

public abstract void onCommit ()

Since: API Level 5

Called immediately before commiting the transaction.

public abstract void onRollback ()

Since: API Level 5

Called if the transaction is about to be rolled back.