Rename NodeStore and add backend abstractions

This commit is contained in:
Vinnie Falco
2013-07-10 10:42:01 -07:00
parent d6fb686426
commit 8f0d65f099
11 changed files with 93 additions and 73 deletions

View File

@@ -63,7 +63,7 @@ public:
return mTempNodeCache;
}
HashedObjectStore& getHashedObjectStore ()
NodeStore& getHashedObjectStore ()
{
return mHashedObjectStore;
}
@@ -223,7 +223,7 @@ private:
NetworkOPs mNetOps;
RPCServerHandler m_rpcServerHandler;
NodeCache mTempNodeCache;
HashedObjectStore mHashedObjectStore;
NodeStore mHashedObjectStore;
SLECache mSLECache;
SNTPClient mSNTPClient;
JobQueue mJobQueue;

View File

@@ -17,7 +17,7 @@ class IProofOfWorkFactory;
class UniqueNodeList;
class IValidations;
class HashedObjectStore;
class NodeStore;
class JobQueue;
class InboundLedgers;
class LedgerMaster;
@@ -68,7 +68,7 @@ public:
virtual UniqueNodeList& getUNL () = 0;
virtual IValidations& getValidations () = 0;
virtual HashedObjectStore& getHashedObjectStore () = 0;
virtual NodeStore& getHashedObjectStore () = 0;
virtual JobQueue& getJobQueue () = 0;
virtual InboundLedgers& getInboundLedgers () = 0;
virtual LedgerMaster& getLedgerMaster () = 0;