All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.swm.gwt.client.mobile.keystore.ITransaction Maven / Gradle / Ivy

There is a newer version: 3.1
Show newest version
package de.swm.gwt.client.mobile.keystore;

/**
 * Implementierung von einem zwei Phasen commit protokoll.
 *
 * @author wiese.daniel
 *         
* copyright (C) 2012, Stadtwerke München GmbH */ public interface ITransaction { /** * Fuehrt ein Rollback aus (alle in einer Transaktion geschriebenen Daten werden geloescht) */ void rollback(); /** * Commits the transaction. * * @param callback callback when the transaction is comleted. */ void commit(IStorageOperationCompleted callback); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy