com.servingxml.io.cache
Interface Store

All Known Implementing Classes:
MonitoredStore, SimpleStore

public interface Store

Defines an interface for a Store.


Method Summary
 void add(CacheDictionary dictionary, java.lang.Object key, java.lang.Object data, Expirable expirable, RevalidationType revalidationType)
           
 void doShutDown()
           
 void doStartUp()
           
 java.lang.Object get(CacheDictionary dictionary, java.lang.Object key)
           
 int getCount()
           
 void removeAll()
           
 

Method Detail

getCount

int getCount()

removeAll

void removeAll()

get

java.lang.Object get(CacheDictionary dictionary,
                     java.lang.Object key)

add

void add(CacheDictionary dictionary,
         java.lang.Object key,
         java.lang.Object data,
         Expirable expirable,
         RevalidationType revalidationType)

doStartUp

void doStartUp()

doShutDown

void doShutDown()