Interface MemcacheService.ItemForPeek
-
- Enclosing interface:
- MemcacheService
public static interface MemcacheService.ItemForPeek
...
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Long
getDeleteLockTimeSec()
Long
getExpirationTimeSec()
Long
getLastAccessTimeSec()
Object
getValue()
-
-
-
Method Detail
-
getValue
Object getValue()
- Returns:
- the encapsulated value object.
-
getExpirationTimeSec
Long getExpirationTimeSec()
- Returns:
- the expiration timestamp of the item in unix epoch seconds, or null if this item has no expiration timestamp.
-
getLastAccessTimeSec
Long getLastAccessTimeSec()
- Returns:
- the last accessed timestamp of the item in unix epoch seconds, or null if this item has no last access timestamp.
-
getDeleteLockTimeSec
Long getDeleteLockTimeSec()
- Returns:
- the delete_time timestamp in unix epoch seconds resulting from setting the millisNoReAdd parameter of the item, or null if this item is not delete locked.
-
-