NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.3: 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 
37 bool
39 {
40  return false;
41 }
42 
43 } // namespace util
44 } // 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.