|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.jboss.cache.loader.AbstractCacheLoader
org.jboss.cache.loader.TcpDelegatingCacheLoader
public class TcpDelegatingCacheLoader
DelegatingCacheLoader implementation which delegates to a remote (not in the same VM) CacheImpl using TCP/IP for communication. Example configuration for connecting to a TcpCacheServer running at myHost:12345:
org.jboss.cache.loader.TcpDelegatingCacheLoader host=localhost port=2099
Field Summary |
---|
Fields inherited from class org.jboss.cache.loader.AbstractCacheLoader |
---|
buddyFqnTransformer, cache, regionManager, transactions |
Constructor Summary | |
---|---|
TcpDelegatingCacheLoader()
|
Method Summary | |
---|---|
protected boolean |
_exists(Fqn name)
|
protected java.util.Map<java.lang.Object,java.lang.Object> |
_get(Fqn name)
|
protected java.util.Set<?> |
_getChildrenNames(Fqn fqn)
|
protected void |
_put(Fqn name,
java.util.Map<java.lang.Object,java.lang.Object> attributes)
|
protected java.lang.Object |
_put(Fqn name,
java.lang.Object key,
java.lang.Object value)
|
protected void |
_put(java.util.List<Modification> modifications)
|
protected void |
_remove(Fqn fqn)
|
protected java.lang.Object |
_remove(Fqn fqn,
java.lang.Object key)
|
protected void |
_removeData(Fqn fqn)
|
boolean |
exists(Fqn name)
Returns true if the CacheLoader has a node with a Fqn . |
java.util.Map<java.lang.Object,java.lang.Object> |
get(Fqn name)
Returns all keys and values from the persistent store, given a Fqn |
CacheLoaderConfig.IndividualCacheLoaderConfig |
getConfig()
Gets the configuration. |
java.util.Set<?> |
getChildrenNames(Fqn fqn)
Returns a set of children node names. |
protected java.lang.Object |
invokeWithRetries(java.lang.reflect.Method m,
java.lang.Object... params)
Invokes the specified Method with the specified parameters, catching SocketExceptions and attempting to reconnect to the TcpCacheServer if necessary. |
void |
loadEntireState(java.io.ObjectOutputStream os)
Fetches the entire state for this cache from secondary storage (disk, database) and writes it to a provided ObjectOutputStream. |
void |
loadState(Fqn subtree,
java.io.ObjectOutputStream os)
Fetches a portion of the state for this cache from secondary storage (disk, database) and writes it to a provided ObjectOutputStream. |
void |
put(Fqn name,
java.util.Map<java.lang.Object,java.lang.Object> attributes)
Puts all entries of the map into the existing map of the given node, overwriting existing keys, but not clearing the existing map before insertion. |
java.lang.Object |
put(Fqn name,
java.lang.Object key,
java.lang.Object value)
Puts a key and value into the attribute map of a given node. |
void |
put(java.util.List<Modification> modifications)
Applies all modifications to the backend store. |
void |
remove(Fqn fqn)
Removes the given node and all its subnodes, does nothing if the node does not exist. |
java.lang.Object |
remove(Fqn fqn,
java.lang.Object key)
Removes the given key and value from the attributes of the given node. |
void |
removeData(Fqn fqn)
Removes all attributes from a given node, but doesn't delete the node itself or any subnodes. |
void |
setConfig(CacheLoaderConfig.IndividualCacheLoaderConfig base)
Allows configuration via XML config file. |
void |
start()
|
void |
stop()
|
void |
storeEntireState(java.io.ObjectInputStream is)
Stores the entire state for this cache by reading it from a provided ObjectInputStream. |
void |
storeState(Fqn subtree,
java.io.ObjectInputStream is)
Stores the given portion of the cache tree's state in secondary storage. |
Methods inherited from class org.jboss.cache.loader.AbstractCacheLoader |
---|
commit, create, destroy, doMarshall, doUnmarshall, getMarshaller, getNodeDataList, loadStateHelper, move, prepare, put, regionAwareMarshall, regionAwareUnmarshall, rollback, setCache, setRegionManager, storeStateHelper |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public TcpDelegatingCacheLoader()
Method Detail |
---|
public void setConfig(CacheLoaderConfig.IndividualCacheLoaderConfig base)
base
- May be an instance of the CacheLoaderConfig.IndividualCacheLoaderConfig
base
class, in which case the cache loader should use the
PluggableConfigurationComponent.getProperties()
method to find configuration information. Alternatively,
may be a type-specific subclass of CacheLoaderConfig.IndividualCacheLoaderConfig
,
if there is one.public CacheLoaderConfig.IndividualCacheLoaderConfig getConfig()
CacheLoader
CacheLoaderConfig.IndividualCacheLoaderConfig
object.protected java.lang.Object invokeWithRetries(java.lang.reflect.Method m, java.lang.Object... params)
m
- method to invokeparams
- parameters
public java.util.Set<?> getChildrenNames(Fqn fqn) throws java.lang.Exception
CacheLoader
Fqn
.
Returns null if the named node is not found or there are no children.
The returned set must not be modifiable. Implementors can use
Collections.unmodifiableSet(java.util.Set)
to make the set unmodifiable.
Implementors may impose restrictions on the contents of an Fqn (such as Strings-only) and as such, indirectly
impose the same restriction on the contents of a Set returned by getChildrenNames().
fqn
- The Fqn
of the parent
java.lang.Exception
public java.util.Map<java.lang.Object,java.lang.Object> get(Fqn name) throws java.lang.Exception
CacheLoader
Fqn
name
- the Fqn
to search for.
public boolean exists(Fqn name) throws java.lang.Exception
CacheLoader
Fqn
.
java.lang.Exception
public java.lang.Object put(Fqn name, java.lang.Object key, java.lang.Object value) throws java.lang.Exception
CacheLoader
java.lang.Exception
public void put(Fqn name, java.util.Map<java.lang.Object,java.lang.Object> attributes) throws java.lang.Exception
CacheLoader
Map.putAll(java.util.Map extends K, ? extends V>)
.
If the node does not exist, all parent nodes from the root down are created automatically
Note since 3.0, as an optimization, this method will require a definitive attribute map and
not just a subset. This will allow cache loader implementations to overwrite rather than merge, if that is
deemed more efficient. This will not break backward compatibility since performing a merge will not cause
any loss of data even though it is an unnecessary step.
name
- The fully qualified name of the nodeattributes
- A Map of attributes. Can be null
java.lang.Exception
public void put(java.util.List<Modification> modifications) throws java.lang.Exception
CacheLoader
put
in interface CacheLoader
put
in class AbstractCacheLoader
modifications
- A Listjava.lang.Exception
public java.lang.Object remove(Fqn fqn, java.lang.Object key) throws java.lang.Exception
CacheLoader
java.lang.Exception
public void remove(Fqn fqn) throws java.lang.Exception
CacheLoader
fqn
- the Fqn
of the node
java.lang.Exception
public void removeData(Fqn fqn) throws java.lang.Exception
CacheLoader
fqn
- the Fqn
of the node
java.lang.Exception
protected java.util.Set<?> _getChildrenNames(Fqn fqn) throws java.lang.Exception
java.lang.Exception
protected java.util.Map<java.lang.Object,java.lang.Object> _get(Fqn name) throws java.lang.Exception
java.lang.Exception
protected boolean _exists(Fqn name) throws java.lang.Exception
java.lang.Exception
protected java.lang.Object _put(Fqn name, java.lang.Object key, java.lang.Object value) throws java.lang.Exception
java.lang.Exception
protected void _put(Fqn name, java.util.Map<java.lang.Object,java.lang.Object> attributes) throws java.lang.Exception
java.lang.Exception
protected void _put(java.util.List<Modification> modifications) throws java.lang.Exception
java.lang.Exception
protected java.lang.Object _remove(Fqn fqn, java.lang.Object key) throws java.lang.Exception
java.lang.Exception
protected void _remove(Fqn fqn) throws java.lang.Exception
java.lang.Exception
protected void _removeData(Fqn fqn) throws java.lang.Exception
java.lang.Exception
public void start() throws java.io.IOException
start
in interface Lifecycle
start
in class AbstractCacheLoader
java.io.IOException
public void stop()
stop
in interface Lifecycle
stop
in class AbstractCacheLoader
public void loadEntireState(java.io.ObjectOutputStream os) throws java.lang.Exception
CacheLoader
CacheLoader.storeEntireState(ObjectInputStream)
Implementations of this method should not catch any exception or close the
given ObjectOutputStream parameter. In order to ensure cacheloader interoperability
contents of the cache are written to the ObjectOutputStream as a sequence of
NodeData objects.
Default implementation is provided by AbstractCacheLoader
and ensures cacheloader
interoperability. Implementors are encouraged to consider extending AbstractCacheLoader
prior to implementing completely custom cacheloader.
loadEntireState
in interface CacheLoader
loadEntireState
in class AbstractCacheLoader
os
- ObjectOutputStream to write state
java.lang.Exception
AbstractCacheLoader.loadEntireState(ObjectOutputStream)
,
NodeData
public void loadState(Fqn subtree, java.io.ObjectOutputStream os) throws java.lang.Exception
CacheLoader
CacheLoader.storeState(Fqn,ObjectInputStream)
.
Implementations of this method should not catch any exception or close the
given ObjectOutputStream parameter. In order to ensure cacheloader interoperability
contents of the cache are written to the ObjectOutputStream as a sequence of
NodeData objects.
Default implementation is provided by AbstractCacheLoader
and ensures cacheloader
interoperability. Implementors are encouraged to consider extending AbstractCacheLoader
prior to implementing completely custom cacheloader.
loadState
in interface CacheLoader
loadState
in class AbstractCacheLoader
subtree
- Fqn naming the root (i.e. highest level parent) node of
the subtree for which state is requested.os
- ObjectOutputStream to write state
java.lang.Exception
AbstractCacheLoader.loadState(Fqn,ObjectOutputStream)
,
Region.activate()
,
NodeData
public void storeEntireState(java.io.ObjectInputStream is) throws java.lang.Exception
CacheLoader
CacheLoader.loadEntireState(ObjectOutputStream)
}
on some other cache instance. State currently in storage gets overwritten.
Implementations of this method should not catch any exception or close the
given ObjectInputStream parameter. In order to ensure cacheloader interoperability
contents of the cache are read from the ObjectInputStream as a sequence of
NodeData objects.
Default implementation is provided by AbstractCacheLoader
and ensures cacheloader
interoperability. Implementors are encouraged to consider extending AbstractCacheLoader
prior to implementing completely custom cacheloader.
storeEntireState
in interface CacheLoader
storeEntireState
in class AbstractCacheLoader
is
- ObjectInputStream to read state
java.lang.Exception
AbstractCacheLoader.storeEntireState(ObjectInputStream)
,
NodeData
public void storeState(Fqn subtree, java.io.ObjectInputStream is) throws java.lang.Exception
CacheLoader
subtree
,
then no special behavior is required. Otherwise, ensure that
the state is integrated under the given subtree
. Typically
in the latter case subtree
would be the Fqn of the buddy
backup region for
a buddy group; e.g.
If the the transferred state had Fqns starting with "/a" and
subtree
was "/_BUDDY_BACKUP_/192.168.1.2:5555" then the
state should be stored in the local persistent store under
"/_BUDDY_BACKUP_/192.168.1.2:5555/a"
Implementations of this method should not catch any exception or close the
given ObjectInputStream parameter. In order to ensure cacheloader interoperability
contents of the cache are read from the ObjectInputStream as a sequence of
NodeData objects.
Default implementation is provided by AbstractCacheLoader
and ensures cacheloader
interoperability. Implementors are encouraged to consider extending AbstractCacheLoader
prior to implementing completely custom cacheloader.
storeState
in interface CacheLoader
storeState
in class AbstractCacheLoader
subtree
- Fqn naming the root (i.e. highest level parent) node of
the subtree included in state
. If the Fqns
of the data included in state
are not
already children of subtree
, then their
Fqns should be altered to make them children of
subtree
before they are persisted.is
- ObjectInputStream to read state
java.lang.Exception
AbstractCacheLoader.storeState(Fqn,ObjectInputStream)
,
NodeData
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |