Compound Module ScribeTestModule

Package: oversim.applications.scribetest
File: src/applications/scribetest/ScribeTest.ned

(no description)

ScribeTest

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram. Click here to see the full picture.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram. Click here to see the full picture.

Gates:

Name Direction Size Description
udpIn input
from_lowerTier input
from_upperTier input
udpOut output
to_lowerTier output
to_upperTier output

Unassigned submodule parameters:

Name Type Default value Description
scribeTest.rpcUdpTimeout double

default timeout value for direct RPCs

scribeTest.rpcKeyTimeout double

default timeout value for routed RPCs

scribeTest.rpcExponentialBackoff bool

if true, doubles the timeout for every retransmission

scribeTest.debugOutput bool

enable debug output

Source code:

module ScribeTestModule like ITier
{
    gates:
        input udpIn;
        input from_lowerTier;
        input from_upperTier;
        output udpOut;
        output to_lowerTier;
        output to_upperTier;

    submodules:
        scribeTest: ScribeTest;
    connections allowunconnected:
        from_lowerTier --> scribeTest.from_lowerTier;
        to_lowerTier <-- scribeTest.to_lowerTier;
        from_upperTier --> scribeTest.from_upperTier;
        to_upperTier <-- scribeTest.to_upperTier;
        udpIn --> scribeTest.udpIn;
        udpOut <-- scribeTest.udpOut;

}