Package com.cetsoft.imcache.examples

Source Code of com.cetsoft.imcache.examples.HeapCacheTransactionExample

/*
* Copyright (C) 2013 Cetsoft, http://www.cetsoft.com
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* Author : Yusuf Aytas
* Date   : Sep 23, 2013
*/
package com.cetsoft.imcache.examples;

import com.cetsoft.imcache.cache.Cache;
import com.cetsoft.imcache.cache.builder.CacheBuilder;
import com.cetsoft.imcache.cache.heap.tx.CacheTransaction;
import com.cetsoft.imcache.cache.heap.tx.Transaction;
import com.cetsoft.imcache.cache.heap.tx.TransactionCommitter;
import com.cetsoft.imcache.cache.heap.tx.TransactionException;

/**
* The Class HeapCacheTransactionTest.
*/
public class HeapCacheTransactionExample {

  /**
   * The main method.
   *
   * @param args
   *            the arguments
   */
  public static void main(String[] args) {
    Cache<Integer, Integer> cache = CacheBuilder.transactionalHeapCache().transactionCommitter(new TransactionCommitter<Integer, Integer>() {
      int counter = 0;
      public void doPut(Integer key, Integer value) {
        if(counter<3){
          System.out.println("key[" + key + "]," + "value[" + value + "]");
          counter++;
        }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));
  }
}
TOP

Related Classes of com.cetsoft.imcache.examples.HeapCacheTransactionExample

TOP
Copyright © 2018 www.massapi.com. 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.