Package org.helidb.txn

Examples of org.helidb.txn.ReadOnlyTransactionException


    Transaction txn = Transaction.getCurrentTransaction();
    if (txn.isReadOnly())
    {
      if (!readOnly)
      {
        throw new ReadOnlyTransactionException();
      }
      joinReadOnlyTransaction(txn);
    }
    else
    {
View Full Code Here


    if (tc == null)
    {
      if (txn.isReadOnly())
      {
        throw new ReadOnlyTransactionException();
      }

      tc = joinReadWriteTransaction(txn);
    }
    else
    {
      if (tc.isReadOnly())
      {
        throw new ReadOnlyTransactionException();
      }
    }

    return tc.getBackend();
  }
View Full Code Here

TOP

Related Classes of org.helidb.txn.ReadOnlyTransactionException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.