lib/pione/location/data-location.rb in pione-0.3.1 vs lib/pione/location/data-location.rb in pione-0.3.2
- old
+ new
@@ -189,18 +189,26 @@
# @return [void]
def delete
raise NotImplementedError
end
- # Return last modification time of the location.
+ # Return ctime of the location.
#
# @return [Time]
- # last modification time
+ # ctime
+ def ctime
+ raise NotImplementedError
+ end
+
+ # Return mtime of the location.
+ #
+ # @return [Time]
+ # mtime
def mtime
raise NotImplementedError
end
- # Set last modification time of the location.
+ # Set mtime of the location.
#
# @return [void]
def mtime=(time)
raise NotImplementedError
end