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

org.multiverse.api.TransactionStatus Maven / Gradle / Ivy

There is a newer version: 0.7.0
Show newest version
package org.multiverse.api;

/**
 * An enumeration containing the different states a {@link Transaction} can be in. Every transaction always start with
 * the active status. If the transaction committed successfully, the status will change to committed. Or when it is is
 * aborted, the status will change to aborted.
 * 

* If in the future an unstarted state is wanted, please fill in a request for enhancement or go to the mailinglist to * place your question. * * @author Peter Veentjer. * @see Transaction#getStatus() */ public enum TransactionStatus { New(false), Active(false), Prepared(false), Committed(true), Aborted(true); private final boolean isDead; private TransactionStatus(boolean isDead) { this.isDead = isDead; } /** * Checks if the TransactionStatus belongs to a dead (committed or aborted) transaction. * * @return true if dead, false otherwise. */ public final boolean isDead() { return isDead; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy