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

com.jpattern.orm.transaction.ITransactionDefinition Maven / Gradle / Ivy

There is a newer version: 3.5.1
Show newest version
package com.jpattern.orm.transaction;

import java.io.Serializable;

/**
 * 
 * @author cinafr
 *
 */
public interface ITransactionDefinition extends Serializable {

	/**
	 * Use the default timeout of the underlying transaction system,
	 * or none if timeouts are not supported. 
	 */
	int TIMEOUT_DEFAULT = -1;
	
	TransactionPropagation PROPAGATION_DEFAULT = TransactionPropagation.REQUIRED;
	
	TransactionIsolation ISOLATION_DEFAULT = TransactionIsolation.DEFAULT;
	
	boolean READ_ONLY_DEFAULT = false;


	/**
	 * Return the propagation behavior.
	 */
	TransactionPropagation getPropagation();

	/**
	 * Return the isolation level.
	 */
	TransactionIsolation getIsolationLevel();

	/**
	 * Return the transaction timeout.
	 */
	int getTimeout();

	/**
	 * Return whether to optimize as a read-only transaction.
	 */
	boolean isReadOnly();

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy