Represents an in-memory storage entry. More...
#include <in-memory-storage-entry.hpp>
Public Member Functions | |
InMemoryStorageEntry () | |
Create an entry. More... | |
const Data & | getData () const |
Returns the Data packet stored in the in-memory storage entry. More... | |
const Name & | getFullName () const |
Returns the full name (including implicit digest) of the Data packet stored in the in-memory storage entry. More... | |
const Name & | getName () 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 | markStale () |
Disable the data from satisfying interest with MustBeFresh. More... | |
void | release () |
Releases reference counts on shared objects. More... | |
void | setData (const Data &data) |
Changes the content of in-memory storage entry. More... | |
void | setMarkStaleEventId (unique_ptr< util::scheduler::ScopedEventId > eventId) |
Set eventId for the markStale event. More... | |
Represents an in-memory storage entry.
Definition at line 33 of file in-memory-storage-entry.hpp.
ndn::InMemoryStorageEntry::InMemoryStorageEntry | ( | ) |
Create an entry.
Definition at line 26 of file in-memory-storage-entry.cpp.
|
inline |
Returns the Data packet stored in the in-memory storage entry.
Definition at line 65 of file in-memory-storage-entry.hpp.
|
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.
|
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.
|
inline |
Check if the data can satisfy an interest with MustBeFresh.
Definition at line 90 of file in-memory-storage-entry.hpp.
void ndn::InMemoryStorageEntry::markStale | ( | ) |
Disable the data from satisfying interest with MustBeFresh.
Definition at line 52 of file in-memory-storage-entry.cpp.
void ndn::InMemoryStorageEntry::release | ( | ) |
Releases reference counts on shared objects.
Definition at line 32 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.
void ndn::InMemoryStorageEntry::setMarkStaleEventId | ( | unique_ptr< util::scheduler::ScopedEventId > | eventId | ) |
Set eventId for the markStale event.
Definition at line 46 of file in-memory-storage-entry.cpp.