NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.0: NDN, CCN, CCNx, content centric networks
API Documentation
in-memory-storage-persistent.cpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
23 
24 namespace ndn {
25 namespace util {
26 
28  : InMemoryStorage()
29 {
30 }
31 
32 InMemoryStoragePersistent::InMemoryStoragePersistent(boost::asio::io_service& ioService)
33  : InMemoryStorage(ioService)
34 {
35 }
36 
38 {
39 }
40 
41 bool
43 {
44  return false;
45 }
46 
47 } // namespace util
48 } // namespace ndn
Copyright (c) 2011-2015 Regents of the University of California.
virtual bool evictItem()=0
Removes one Data packet from in-memory storage based on derived class implemented replacement policy...
Represents in-memory storage.