Package org.apache.tapestry5
Class BaseOptimizedSessionPersistedObject
- java.lang.Object
-
- org.apache.tapestry5.BaseOptimizedSessionPersistedObject
-
- All Implemented Interfaces:
Serializable
,OptimizedSessionPersistedObject
- Direct Known Subclasses:
DefaultTreeExpansionModel
,DefaultTreeSelectionModel
,GridPaginationModelImpl
,ValidationTrackerImpl
public abstract class BaseOptimizedSessionPersistedObject extends Object implements OptimizedSessionPersistedObject, Serializable
Base implementation ofOptimizedSessionPersistedObject
. Subclasses should invokemarkDirty()
after the internal state of the object changes. Due to the concurrent nature of session attributes it's important that markDirty occurs after the object has been changed. If the change occurs before the object has been mutated it's possible that another thread may re-store the object before the changes are actually made!- Since:
- 5.1.1.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BaseOptimizedSessionPersistedObject()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
checkAndResetDirtyMarker()
protected void
markDirty()
Invoked by the subclass after internal state of the object changes.
-
-
-
Constructor Detail
-
BaseOptimizedSessionPersistedObject
public BaseOptimizedSessionPersistedObject()
-
-
Method Detail
-
checkAndResetDirtyMarker
public final boolean checkAndResetDirtyMarker()
- Specified by:
checkAndResetDirtyMarker
in interfaceOptimizedSessionPersistedObject
- Returns:
- true if the object has in-memory changes since the last time this method was called.
-
markDirty
protected final void markDirty()
Invoked by the subclass after internal state of the object changes.
-
-