*** empty log message ***
[IRC.git] / Robust / Transactions / TransactionalIO / src / TransactionalIO / interfaces / TransactionStatu.java
1 /*
2  * To change this template, choose Tools | Templates
3  * and open the template in the editor.
4  */
5
6 package TransactionalIO.interfaces;
7
8 import TransactionalIO.core.ExtendedTransaction.Status;
9
10 /**
11  *
12  * @author navid
13  */
14 public interface TransactionStatu {
15     
16     public void abortThisSystem();
17     public TransactionStatu getOtherSystem();
18     public void setOtherSystem(TransactionStatu othersystem);
19     public boolean isActive();
20     public boolean isCommitted();
21     public boolean isAborted();
22     
23 }