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

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


   * java.lang.Object)
   */
  public void put(K key, V value) {
    V exValue = super.get(key);
    super.put(key, value);
    TransactionLog log = new PutTransactionLog<K, V>(cache, committer, key, value, exValue);
    CacheTransaction.addLog(log);
  }
View Full Code Here


   * @see com.cetsoft.imcache.cache.heap.HeapCache#put(java.lang.Object, java.lang.Object)
   */
  public void put(K key, V value) {
    V exValue = super.get(key);
    super.put(key, value);
    TransactionLog log = new PutTransactionLog<K, V>(cache, committer, key, value, exValue);
    CacheTransaction.addLog(log);
  }
View Full Code Here

TOP

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

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.