to top
Android APIs
Added in API level 5
public interface

SQLiteTransactionListener

android.database.sqlite.SQLiteTransactionListener

Class Overview

A listener for transaction events.

Summary

Public Methods

? Examples
abstract void onBegin()
Called immediately after the transaction begins.

? Examples
abstract void onCommit()
Called immediately before commiting the transaction.

? Examples
abstract void onRollback()
Called if the transaction is about to be rolled back.

Public Methods

public abstract void onBegin ()

Added in API level 5

Called immediately after the transaction begins.

public abstract void onCommit ()

Added in API level 5

Called immediately before commiting the transaction.

public abstract void onRollback ()

Added in API level 5

Called if the transaction is about to be rolled back.

No examples for this method.
Frequently called with: [Clear]
Portions of this page are reproduced from work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. The original page is available here.