Compound Module GlobalObserver

File: Common/GlobalObserver.ned

(no description)

bootstrapOracle: BootstrapOracle globalStatistics: GlobalStatistics globalFunctions: globalFunctionsType like GlobalFunctions

Usage diagram:

The following diagram shows usage relationships between modules, networks and channels. Unresolved module (and channel) types are missing from the diagram. Click here to see the full picture.

Contains the following modules:

If a module type shows up more than once, that means it has been defined in more than one NED file.

BootstrapOracle (no description)
GlobalFunctions (no description)
GlobalStatistics (no description)

Used in compound modules:

If a module type shows up more than once, that means it has been defined in more than one NED file.

SingleHostUnderlay

The SingleHostUnderlay ned-file

See also: SingleHostConfigurator

IPv4Underlay

The IPv4Underlay ned-file

See also: IPv4UnderlayConfigurator

SimpleUnderlay

The SimpleUnderlay ned-file

See also: SimpleNetConfigurator

Parameters:

Name Type Description
useGlobalFunctions numeric
globalFunctionsType string

Unassigned submodule parameters:

Name Type Description
bootstrapOracle.maxNumberOfKeys numeric
bootstrapOracle.keyProbability numeric

Source code:

module GlobalObserver
    parameters:
        useGlobalFunctions: numeric,
	globalFunctionsType: string;

    submodules:
            bootstrapOracle: BootstrapOracle;
                display: "p=60,60;i=block/control";

            globalStatistics: GlobalStatistics;
                display: "p=180,60;i=block/control";

            globalFunctions: globalFunctionsType[min(1, useGlobalFunctions)] like GlobalFunctions;
                display: "p=60,180;i=block/control";
endmodule