storage: Making use of SkipList-based index

Change-Id: I360af97ae794da383fe00aaad8ab3c417c5167d3
Refs: #1695, #1434
diff --git a/src/handles/tcp-bulk-insert-handle.hpp b/src/handles/tcp-bulk-insert-handle.hpp
index 17233f4..ef1cbdd 100644
--- a/src/handles/tcp-bulk-insert-handle.hpp
+++ b/src/handles/tcp-bulk-insert-handle.hpp
@@ -21,7 +21,7 @@
 #define REPO_HANDLES_TCP_BULK_INSERT_HANDLE_HPP
 
 #include "common.hpp"
-#include "storage/storage-handle.hpp"
+#include "storage/repo-storage.hpp"
 
 #include <boost/asio.hpp>
 
@@ -42,7 +42,7 @@
 
 public:
   TcpBulkInsertHandle(boost::asio::io_service& ioService,
-                      StorageHandle& storageHandle);
+                      RepoStorage& storageHandle);
 
   void
   listen(const std::string& host, const std::string& port);
@@ -50,7 +50,7 @@
   void
   stop();
 
-  StorageHandle&
+  RepoStorage&
   getStorageHandle()
   {
     return m_storageHandle;
@@ -64,7 +64,7 @@
 private:
   boost::asio::ip::tcp::acceptor m_acceptor;
   boost::asio::ip::tcp::endpoint m_localEndpoint;
-  StorageHandle& m_storageHandle;
+  RepoStorage& m_storageHandle;
 };
 
 } // namespace repo