ndn::InMemoryStorageEntry Class Reference

Represents an in-memory storage entry. More...

#include <ndn-cxx/ims/in-memory-storage-entry.hpp>

+ Inheritance diagram for ndn::InMemoryStorageEntry:
+ Collaboration diagram for ndn::InMemoryStorageEntry:

Public Member Functions

 InMemoryStorageEntry ()
 Create an entry. More...
 
const DatagetData () const
 Returns the Data packet stored in the in-memory storage entry. More...
 
const NamegetFullName () const
 Returns the full name (including implicit digest) of the Data packet stored in the in-memory storage entry. More...
 
const NamegetName () const
 Returns the name of the Data packet stored in the in-memory storage entry. More...
 
bool isFresh ()
 Check if the data can satisfy an interest with MustBeFresh. More...
 
void release ()
 Releases reference counts on shared objects. More...
 
void scheduleMarkStale (util::Scheduler &sched, time::nanoseconds after)
 Schedule an event to mark this entry as non-fresh. More...
 
void setData (const Data &data)
 Changes the content of in-memory storage entry. More...
 

Detailed Description

Represents an in-memory storage entry.

Definition at line 33 of file in-memory-storage-entry.hpp.

Constructor & Destructor Documentation

ndn::InMemoryStorageEntry::InMemoryStorageEntry ( )

Create an entry.

Definition at line 26 of file in-memory-storage-entry.cpp.

Member Function Documentation

const Data& ndn::InMemoryStorageEntry::getData ( ) const
inline

Returns the Data packet stored in the in-memory storage entry.

Definition at line 65 of file in-memory-storage-entry.hpp.

const Name& ndn::InMemoryStorageEntry::getFullName ( ) const
inline

Returns the full name (including implicit digest) of the Data packet stored in the in-memory storage entry.

Definition at line 57 of file in-memory-storage-entry.hpp.

const Name& ndn::InMemoryStorageEntry::getName ( ) const
inline

Returns the name of the Data packet stored in the in-memory storage entry.

Definition at line 48 of file in-memory-storage-entry.hpp.

bool ndn::InMemoryStorageEntry::isFresh ( )
inline

Check if the data can satisfy an interest with MustBeFresh.

Definition at line 85 of file in-memory-storage-entry.hpp.

void ndn::InMemoryStorageEntry::release ( )

Releases reference counts on shared objects.

Definition at line 32 of file in-memory-storage-entry.cpp.

void ndn::InMemoryStorageEntry::scheduleMarkStale ( util::Scheduler &  sched,
time::nanoseconds  after 
)

Schedule an event to mark this entry as non-fresh.

Definition at line 46 of file in-memory-storage-entry.cpp.

void ndn::InMemoryStorageEntry::setData ( const Data data)

Changes the content of in-memory storage entry.

This method also allows data to satisfy Interest with MustBeFresh

Definition at line 39 of file in-memory-storage-entry.cpp.