Uses of Class
org.glassfish.ha.store.api.BackingStore
-
Packages that use BackingStore Package Description com.sun.xml.ws.api.ha com.sun.xml.ws.rx.ha com.sun.xml.wss.impl.misc org.glassfish.ha.store.api org.glassfish.ha.store.impl -
-
Uses of BackingStore in com.sun.xml.ws.api.ha
Methods in com.sun.xml.ws.api.ha that return BackingStore Modifier and Type Method Description <K extends Serializable,V extends Serializable>
BackingStore<K,V>HighAvailabilityProvider. createBackingStore(BackingStoreFactory factory, String backingStoreName, Class<K> keyClass, Class<V> valueClass)Helper method that avoids the need for exception handling boilerplate code when creating a newBackingStoreinstance.Methods in com.sun.xml.ws.api.ha with parameters of type BackingStore Modifier and Type Method Description static voidHighAvailabilityProvider. close(BackingStore<?,?> backingStore)Helper method that avoids the need for exception handling boilerplate code when closing aBackingStoreinstance.static voidHighAvailabilityProvider. destroy(BackingStore<?,?> backingStore)Helper method that avoids the need for exception handling boilerplate code when destroying aBackingStoreinstance.static <K extends Serializable,V extends Serializable>
VHighAvailabilityProvider. loadFrom(BackingStore<K,V> backingStore, K key, String version)Helper method that avoids the need for exception handling boilerplate code when loading data from aBackingStoreinstance.static <K extends Serializable>
voidHighAvailabilityProvider. removeExpired(BackingStore<K,?> backingStore)Helper method that avoids the need for exception handling boilerplate code when destroying aBackingStoreinstance.static <K extends Serializable,V extends Serializable>
voidHighAvailabilityProvider. removeFrom(BackingStore<K,V> backingStore, K key)Helper method that avoids the need for exception handling boilerplate code when removing data from aBackingStoreinstance.static <K extends Serializable,V extends Serializable>
StringHighAvailabilityProvider. saveTo(BackingStore<K,V> backingStore, K key, V value, boolean isNew)Helper method that avoids the need for exception handling boilerplate code when storing data into aBackingStoreinstance. -
Uses of BackingStore in com.sun.xml.ws.rx.ha
Methods in com.sun.xml.ws.rx.ha with parameters of type BackingStore Modifier and Type Method Description static <K extends Serializable,V extends Serializable>
HighlyAvailableMap<K,V>HighlyAvailableMap. create(String name, BackingStore<K,V> backingStore)static <K extends Serializable,V extends Serializable>
HighlyAvailableMap<K,V>HighlyAvailableMap. createSticky(String name, BackingStore<StickyKey,V> backingStore)Constructors in com.sun.xml.ws.rx.ha with parameters of type BackingStore Constructor Description SimpleReplicationManager(String name, BackingStore<K,V> backingStore)StickyReplicationManager(String name, BackingStore<StickyKey,V> backingStore) -
Uses of BackingStore in com.sun.xml.wss.impl.misc
Constructors in com.sun.xml.wss.impl.misc with parameters of type BackingStore Constructor Description HANonceManager(BackingStore<StickyKey,HANonceManager.HAPojo> backingStore, long maxNonceAge) -
Uses of BackingStore in org.glassfish.ha.store.api
Methods in org.glassfish.ha.store.api that return BackingStore Modifier and Type Method Description <K extends Serializable,V extends Serializable>
BackingStore<K,V>BackingStoreFactory. createBackingStore(BackingStoreConfiguration<K,V> conf)This method is called to create a BackingStore. -
Uses of BackingStore in org.glassfish.ha.store.impl
Subclasses of BackingStore in org.glassfish.ha.store.impl Modifier and Type Class Description classNoOpBackingStore<K extends Serializable,V extends Serializable>Methods in org.glassfish.ha.store.impl that return BackingStore Modifier and Type Method Description <K extends Serializable,V extends Serializable>
BackingStore<K,V>NoOpBackingStoreFactory. createBackingStore(BackingStoreConfiguration<K,V> conf)
-