Package com.cetsoft.imcache.cache.heap.tx

Examples of com.cetsoft.imcache.cache.heap.tx.Transaction


            } else {
              throw new RuntimeException();
            }
          }
        }).build();
    Transaction transaction1 = CacheTransaction.get();
    transaction1.begin();
    try {
      cache.put(3, 5);
      cache.put(10, 14);
      transaction1.commit();
    } catch (TransactionException exception) {
      transaction1.rollback();
    } finally {
      transaction1.close();
    }
    System.out.println("Value for the key 3 is " + cache.get(3));
    System.out.println("Value for the key 10 is " + cache.get(10));
    Transaction transaction2 = CacheTransaction.get();
    transaction2.begin();
    try {
      cache.put(1, 10);
      cache.put(10, 13);
      transaction2.commit();
    } catch (TransactionException exception) {
      transaction2.rollback();
    } finally {
      transaction2.close();
    }
    System.out.println("Value for the key 1 is " + cache.get(1));
    System.out.println("Value for the key 10 is " + cache.get(10));
  }
View Full Code Here


        }else{
          throw new RuntimeException();
        }
      }
    }).build();
    Transaction transaction1 = CacheTransaction.get();
    transaction1.begin();
    try {
      cache.put(3, 5);
      cache.put(10, 14);
      transaction1.commit();
    } catch(TransactionException exception) {
      transaction1.rollback();
    } finally{
      transaction1.close();
    }
    System.out.println("Value for the key 3 is "+cache.get(3));
    System.out.println("Value for the key 10 is "+cache.get(10));
    Transaction transaction2 = CacheTransaction.get();
    transaction2.begin();
    try {
      cache.put(1, 10);
      cache.put(10, 13);
      transaction2.commit();
    } catch(TransactionException exception) {
      transaction2.rollback();
    } finally{
      transaction2.close();
    }
    System.out.println("Value for the key 1 is "+cache.get(1));
    System.out.println("Value for the key 10 is "+cache.get(10));
  }
View Full Code Here

TOP

Related Classes of com.cetsoft.imcache.cache.heap.tx.Transaction

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.