org.apache.ibatis.cache.decorators
Class FifoCache

java.lang.Object
  extended by org.apache.ibatis.cache.decorators.FifoCache
All Implemented Interfaces:
Cache

public class FifoCache
extends Object
implements Cache


Constructor Summary
FifoCache(Cache delegate)
           
 
Method Summary
 void clear()
           
 String getId()
           
 Object getObject(Object key)
           
 ReadWriteLock getReadWriteLock()
           
 int getSize()
           
 void putObject(Object key, Object value)
           
 Object removeObject(Object key)
           
 void setSize(int size)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FifoCache

public FifoCache(Cache delegate)
Method Detail

getId

public String getId()
Specified by:
getId in interface Cache

getSize

public int getSize()
Specified by:
getSize in interface Cache

setSize

public void setSize(int size)

putObject

public void putObject(Object key,
                      Object value)
Specified by:
putObject in interface Cache

getObject

public Object getObject(Object key)
Specified by:
getObject in interface Cache

removeObject

public Object removeObject(Object key)
Specified by:
removeObject in interface Cache

clear

public void clear()
Specified by:
clear in interface Cache

getReadWriteLock

public ReadWriteLock getReadWriteLock()
Specified by:
getReadWriteLock in interface Cache


Copyright © 2010-2012 MyBatis.org. All Rights Reserved.