Add insight support to TaggedCache, KeyCache:

* Move TaggedCache, KeyCache to common
* Add radmap module, FullBelowCache class
* Add get_seconds_clock
* Inject FullBelowCache in SHAMap
This commit is contained in:
Vinnie Falco
2014-01-31 22:56:14 -08:00
parent 35715a0146
commit 2009f8b1ca
56 changed files with 814 additions and 194 deletions

View File

@@ -17,8 +17,6 @@
*/
//==============================================================================
#include "beast/beast/make_unique.h"
namespace ripple {
namespace Resource {
@@ -34,9 +32,7 @@ public:
Journal journal)
: Thread ("Resource::Manager")
, m_journal (journal)
, m_logic (collector,
get_abstract_clock <std::chrono::steady_clock, std::chrono::seconds> (),
journal)
, m_logic (collector, get_seconds_clock (), journal)
{
startThread ();
}