Uses of Class
org.glassfish.ha.store.api.BackingStoreException

Packages that use BackingStoreException
org.glassfish.ha.store.api   
org.glassfish.ha.store.impl   
org.glassfish.ha.store.spi   
 

Uses of BackingStoreException in org.glassfish.ha.store.api
 

Methods in org.glassfish.ha.store.api that throw BackingStoreException
 void BackingStore.close()
           
 void BackingStoreTransaction.commit()
           
<K extends java.io.Serializable,V extends java.io.Serializable>
BackingStore<K,V>
BackingStoreFactory.createBackingStore(BackingStoreConfiguration<K,V> conf)
          This method is called to create a BackingStore.
abstract  void BackingStore.destroy()
          Called when the store is no longer needed.
protected  void BackingStore.initialize(BackingStoreConfiguration<K,V> conf)
           
abstract  V BackingStore.load(java.lang.Object key, java.lang.String version)
          Load and return the data for the given id.
abstract  void BackingStore.remove(K key)
          Remove the association for the id.
 void BackingStore.removeByCriteria(Criteria<V> criteria, StoreEntryEvaluator<K,V> eval)
          Remove instances that meet the criteria.
 int BackingStore.removeExpired()
           
abstract  int BackingStore.removeExpired(long idleForMillis)
          Remove expired entries
abstract  java.lang.String BackingStore.save(K key, V value, boolean isNew)
          Save the value whose key is id.
abstract  int BackingStore.size()
          Get the current size of the store
abstract  void BackingStore.updateTimestamp(K key, long time)
           
 java.lang.String BackingStore.updateTimestamp(K key, java.lang.Long version, java.lang.Long accessTime, java.lang.Long maxIdleTime)
          Recomended way is to just do a save(k, v)
 

Uses of BackingStoreException in org.glassfish.ha.store.impl
 

Methods in org.glassfish.ha.store.impl that throw BackingStoreException
<K extends java.io.Serializable,V extends java.io.Serializable>
BackingStore<K,V>
NoOpBackingStoreFactory.createBackingStore(BackingStoreConfiguration<K,V> conf)
           
 void NoOpBackingStore.destroy()
           
protected  void NoOpBackingStore.initialize(BackingStoreConfiguration<K,V> conf)
           
 V NoOpBackingStore.load(K key, java.lang.Long version)
           
 V NoOpBackingStore.load(java.lang.Object key, java.lang.String version)
           
 void NoOpBackingStore.remove(K key)
           
 int NoOpBackingStore.removeExpired(long idleForMillis)
           
 java.lang.String NoOpBackingStore.save(K key, V value, boolean isNew)
           
 int NoOpBackingStore.size()
           
 void NoOpBackingStore.updateTimestamp(K key, long time)
           
 java.lang.String NoOpBackingStore.updateTimestamp(K key, java.lang.Long version, java.lang.Long accessTime, java.lang.Long maxIdleTime)
           
 

Uses of BackingStoreException in org.glassfish.ha.store.spi
 

Methods in org.glassfish.ha.store.spi that throw BackingStoreException
static BackingStoreFactory BackingStoreFactoryRegistry.getFactoryInstance(java.lang.String type)
          Return an instance of BackingStoreFactory for the specified type.
 



Copyright © 2010. All Rights Reserved.