You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@geode.apache.org by "Ernest Burghardt (JIRA)" <ji...@apache.org> on 2017/08/03 16:00:01 UTC

[jira] [Created] (GEODE-3392) Migrate CacheStatistics to use std::chrono

Ernest Burghardt created GEODE-3392:
---------------------------------------

             Summary: Migrate CacheStatistics to use std::chrono
                 Key: GEODE-3392
                 URL: https://issues.apache.org/jira/browse/GEODE-3392
             Project: Geode
          Issue Type: Improvement
          Components: native client
            Reporter: Ernest Burghardt


 virtual std::chrono::time_point getLastModifiedTime() const;

  /**
   * For an entry, returns the last time it was accessed via
   * @see Region::get
   * @see getLastModifiedTime
   */
  virtual std::chrono::time_point getLastAccessedTime() const;

 private:
  virtual void setLastAccessedTime(std::chrono::time_point lat);
  virtual void setLastModifiedTime(std::chrono::time_point lmt);

  std::atomic<std::chrono::time_point> m_lastAccessTime;
  std::atomic<std::chrono::time_point> m_lastModifiedTime;



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)