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

se.l4.silo.Transaction Maven / Gradle / Ivy

The newest version!
package se.l4.silo;

/**
 * Transaction in {@link Silo}. See {@link Silo} for details on the
 * transaction semantics in use.
 *
 * @author Andreas Holstenson
 *
 */
public interface Transaction
{
	/**
	 * Rollback any changes made.
	 */
	void rollback();

	/**
	 * Commit any changes made.
	 */
	void commit();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy