Implement getLatestTimestamp API

This commit is contained in:
emanuele-f 2018-08-10 15:34:32 +02:00
parent b2107b6f36
commit 20e8b4aaca
4 changed files with 34 additions and 12 deletions

View file

@ -56,6 +56,12 @@ end
function driver:export()
end
--! @brief Get the most recent timestamp available for queries.
--! @note a conservative way to implement this is to return the current time.
--! @return most recent timestamp available.
function driver:getLatestTimestamp()
end
-- ##############################################
return driver