Package com.db4o.activation
Interface Activator
-
- All Known Implementing Classes:
ObjectReference
public interface Activator
Activator interface.
Activatable
objects need to have a reference to an Activator implementation, which is called by Transparent Activation, when a request is received to activate the host object.- See Also:
- Transparent Activation framework.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
activate(ActivationPurpose purpose)
Method to be called to activate the host object.
-
-
-
Method Detail
-
activate
void activate(ActivationPurpose purpose)
Method to be called to activate the host object.- Parameters:
purpose
- for which purpose is the object being activated?ActivationPurpose.WRITE
will cause the object to be saved on the nextObjectContainer.commit()
operation.
-
-