Namespace inet
ResidenceTimeTag
classThis tag specifies the network node residence start and end times. It can be attached to a specific region of a packet in order to store when that region entered and left the network node.
Extends
Name | Type | Description |
---|---|---|
TagBase | (unknown -- not in documented files) |
Fields
Name | Type | Description |
---|---|---|
startTime | simtime_t | |
endTime | simtime_t |
Region Tagging operations (observed)
tagAction | module |
---|---|
addTagsWhereAbsent | ResidenceTimeMeasurer |
mapAllTags | ResidenceTimeMeasurer |
mapAllTagsForUpdate | ResidenceTimeMeasurer |
removeTagsWherePresent | ResidenceTimeMeasurer |
Source code
// // This tag specifies the network node residence start and end times. It can be // attached to a specific region of a packet in order to store when that region // entered and left the network node. // class ResidenceTimeTag extends TagBase { simtime_t startTime = -1; simtime_t endTime = -1; }File: src/inet/common/TimeTag.msg