Compound Module NeighborListNeighborCache

Package: inet.physicallayer.neighborcache
File: src/inet/physicallayer/neighborcache/NeighborListNeighborCache.ned

This neighbor cache model maintains a separate periodically updated neighbor list for each radio.

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Parameters:

Name Type Default value Description
radioMediumModule string "^"
range double
refillPeriod double

Properties:

Name Value Description
display i=block/table2
class NeighborListNeighborCache

Source code:

//
// This neighbor cache model maintains a separate periodically updated neighbor
// list for each radio.
//
module NeighborListNeighborCache like INeighborCache
{
    parameters:
        string radioMediumModule = default("^");
        double range @unit(m);
        double refillPeriod @unit(s);
        @display("i=block/table2");
        @class(NeighborListNeighborCache);
}