org.jboss.cache.aop
Class AOPInstance
java.lang.Object
org.jboss.cache.aop.AOPInstance
- All Implemented Interfaces:
- java.io.Serializable
- public class AOPInstance
- extends java.lang.Object
- implements java.io.Serializable
Wrapper type for cached AOP instances.
When an object is looked up or put in TreeCacheAOP, this object will be advised with a CacheInterceptor.
The tree cache stores a reference to this object (for example to update the instance variables, etc.).
Since this reference need to be transactional but never replicated (the reference is only valid within the VM)
this reference is wrapped into an AOPInstance.
In addition, this instance also serves as a metadata for TreeCacheAop. E.g., it has a reference count for
multiple references and reference FQN.
- See Also:
- Serialized Form
Field Summary |
protected java.lang.Object |
instance_
|
static java.lang.Object |
KEY
Key under which the AOPInstance is stored in a Node's map. |
protected int |
refCount_
|
protected java.lang.String |
refFqn_
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
KEY
public static final java.lang.Object KEY
- Key under which the AOPInstance is stored in a Node's map.
instance_
protected transient java.lang.Object instance_
refFqn_
protected java.lang.String refFqn_
refCount_
protected int refCount_
AOPInstance
public AOPInstance()
AOPInstance
public AOPInstance(java.lang.Object instance)