Important: The information in this document is obsolete and should not be used for new development.
IsLastModTimeAvailable
Tests whether the last modification time is available for data in this Cyberdog stream.
ODBoolean IsLastModTimeAvailable ();
- return value
kODTrue
if the last modification time is available; otherwise,kODFalse
.DISCUSSION
You call this method to determine whether the last modification time is available for data downloaded by a stream object. If the last modification time is available, you can retrieve it by calling theGetLastModTime
method. IfGetLastModTime
returnskCDLastModTimeUnknowable
, you do not need to continue to pollIsLastModTimeAvailable
.If you subclass
CyberStream
, you must override this method. Your override method must not call its inherited method; that is, your override method must implement this method's functionality completely.SEE ALSO
TheGetLastModTime
method (page 383).