File: Overlay/PubSubMMOG/PubSubMMOG.ned
(no description)
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.
If a module type shows up more than once, that means it has been defined in more than one NED file.
PubSubMMOG | (no description) |
Name | Direction | Description |
---|---|---|
from_udp | input | gate from the UDP layer |
to_udp | output | gate to the UDP layer |
from_app | input | gate from the application |
to_app | output | gate to the application |
Name | Type | Description |
---|---|---|
pubSubMMOG.areaDimension | numeric | size of the play filed |
pubSubMMOG.numSubspaces | numeric | number of regions in each direction |
pubSubMMOG.joinDelay | numeric | delay between join retries (sec) |
pubSubMMOG.parentTimeout | numeric | seconds until a node assumes that a particular parent has failed |
pubSubMMOG.maxChildren | numeric | the maximum number of childs in the laodbalancing tree |
pubSubMMOG.movementRate | numeric | the number of movement updates per sec |
pubSubMMOG.AOIWidth | numeric | the size of the area of interest (i.e. subscriptionSize) |
pubSubMMOG.maxMoveDelay | numeric | time after which a move message is considered to be too late |
pubSubMMOG.localPort | numeric | UDP port for PubSubMMOG messages |
pubSubMMOG.debugOutput | bool | enable debug output |
pubSubMMOG.keyLength | numeric | overlay key length in bits |
pubSubMMOG.drawOverlayTopology | bool | draw arrow to successor node? |
pubSubMMOG.hopCountMax | numeric | maximum number of overlay hops |
pubSubMMOG.useCommonAPIforward | bool | enable CommonAPI forward() calls |
pubSubMMOG.joinOnApplicationRequest | bool | only join the overlay on application request |
pubSubMMOG.recNumRedundantNodes | numeric | numRedundantNodes for recursive routing |
pubSubMMOG.lookupParallelPaths | numeric | number of parallel paths |
pubSubMMOG.lookupParallelRpcs | numeric | number of nodes to ask in parallel |
pubSubMMOG.lookupSecure | bool | true, if all nodes should be identified with a ping |
pubSubMMOG.lookupMerge | bool | true, if parallel Rpc results should be merged |
pubSubMMOG.lookupStrictParallelRpcs | bool | limited the number of concurrent rpcs to parameter parallelRpcs |
pubSubMMOG.lookupUseAllParallelResponses | bool | merge all parallel responses from earlier steps |
pubSubMMOG.lookupNewRpcOnEveryTimeout | bool | send a new RPC immediately after an RPC timeouts |
pubSubMMOG.lookupNewRpcOnEveryResponse | bool | send a new RPC after every response, even if there was no progress |
pubSubMMOG.lookupFinishOnFirstUnchanged | bool | finish lookup, if the last pending RPC returned without progress |
pubSubMMOG.lookupFailedNodeRpcs | bool | communicate failed nodes |
pubSubMMOG.lookupRedundantNodes | numeric | number of next hops in each step |
pubSubMMOG.routingType | string | default routing mode (iterative, semi-recursive,...) |
pubSubMMOG.routeMsgAcks | bool | use RPCs for route messages |
pubSubMMOG.collectPerHopDelay | bool | delay statistics for single hops |
module OverlayPubSubMMOG gates: in: from_udp; // gate from the UDP layer out: to_udp; // gate to the UDP layer in: from_app; // gate from the application out: to_app; // gate to the application submodules: pubSubMMOG: PubSubMMOG; display: "p=60,60;i=block/circle"; connections nocheck: from_udp --> pubSubMMOG.from_udp++; to_udp <-- pubSubMMOG.to_udp++; from_app --> pubSubMMOG.from_app; to_app <-- pubSubMMOG.to_app; endmodule