|
Class Reference
%Library.CacheStorage
|
|
Private Storage |
The %CacheStorage class contains the storage interface methods for the Caché default storage structure. The storage interface methods, which are implemented as method generators, work in conjunction with the persistent interface methods of the %Persistent class to provide persistent behavior for objects.
The methods of %CacheStorage are not meant to be called directly. Use the methods of the %Persistent class which, in turn, call the appropriate %CacheStorage method.
|
|
|
STORAGEINTERFACE defines the type of serialization implemented by this class. The value has to match the classtype of the class that is inheriting the serialization interface.
|
%Exists() Check to see if an OID exists in the extent of this class...
%ExistsId() Check to see if an ID exists in the extent of this class...
Kill the data, index, and idlocations for extent root classes. Return an error if the class is not the extent root class.
Load object from persistent storage into memory. The caller is responsible for calling %IdSet() Don't include class name with id in input parameter state is the physical data where the structure of state mirrors the structure of the object on disk obj is an array, subscripted by property name where each array element is equal to the property value named as the subscript.
Acquire (s)hared or (e)xclusive locks based on locktype parameter
%LockId() Obtain an exclusive or shared lock on the object identified by id. The type of lock obtained is determined by shared. This method overrides the implementation from %Library.Persistent.
%OnDetermineClass - find the most-specific-type-class for the given OID.
Load object from persistent storage into memory. The caller is responsible for calling %IdSet() Don't include class name with id in input parameter
Deletes all entries from each index specified in the idxlist argument. If idxlist is empty then all indices that originate in the class are purged. The index definition remains intact.Returns a
%Status value indicating success or failure. This method is normally generated by the storage class for persistent classes using %Library.CacheStorage or%Library.CacheSQLStorage . Persistent classes using some other storage class, such as%Library.CustomStorage must override this method.
%SaveDirect() - saves an object to disk, checks uniqueness and referential integrity constraints, and maintains index structures. This method is implemented by the storage class.
Files the indices for all objects whose ID is in the range defined by pStartId and pEndId. If pEndId is null then it defaults to pStartId. If pStartId is null then the range is empty and no filing will occur. If lockExtent is true then an extent lock will be acquired before the indices are built. If the lock cannot be acquired then an error is returned. The lock is released after the index filing is completed.Returns a
%Status value indicating success or failure.
%SortBegin() This method will start a system merge sort for all indices (idxlist is null) or for specified indices
%SortEnd() This method will end a system merge sort for all indices (idxlist is null) or for specified indices
Release (s)hared or (e)xclusive locks based on locktype parameter
%UnlockId() Release an exclusive or shared lock on the object identified by id. The type of lock released is determined by shared.This method overrides the implementation from %Library.Persistent.