For an entry, returns the last time it was accessed via Region.Get.
For a region, returns the last time any of its entries or the entries of
its subregions were accessed with Region.Get.
Namespace: GemStone.GemFire.Cache
Assembly: GemStone.GemFire.Cache (in GemStone.GemFire.Cache.dll)
Version: 2.7.0.0
Syntax
| C# |
|---|
public uint LastAccessedTime{ get;} |
| Visual Basic (Declaration) |
|---|
Public ReadOnly Property LastAccessedTime As UInteger |
| Visual C++ |
|---|
public: property unsigned int LastAccessedTime { unsigned int get (); } |
Return Value
the last access time of the region or the entry's value; returns 0 if entry is invalid or access time is uninitialized.
Remarks
Any modifications will also update the LastAccessedTime, so LastAccessedTime is always greater than or equal to LastModifiedTime. The LastAccessedTime on a region is propagated upward to parent regions, transitively, to the the root region.
The number is expressed as the number of milliseconds since January 1, 1970. The granularity may be as coarse as 100ms, so the accuracy may be off by up to 50ms.