Package: simu5g.apps.mec.WarningAlert
MECWarningAlertApp
simple moduleThis module is an application that is dynamically instantiated on a MEC host upon request from a UEWarningAlertApp via a DeviceApp. It receives requests from the UE to be notified when it enters a circular area defined by its center and radius. This is accomplished by subscribing to the LocationService provided by the MEC Host. This module receives a notification from the Location Service when the UE enters/exits the area and, in turn, sends a message to the UE.
Inheritance diagram
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Extends
Name | Type | Description |
---|---|---|
MecAppBase | simple module |
This is a MEC app that ... TBC |
Parameters
Name | Type | Default value | Description |
---|---|---|---|
mecAppId | int | ||
mecAppIndex | int | ||
mp1Address | string | "" | |
mp1Port | int | 10021 | |
vimModule | string | "^.vim" |
modules: |
mecPlatformModule | string | "^.mecPlatform" | |
serviceRegistryModule | string | "^.mecPlatform.serviceRegistry" | |
requiredRam | double |
resource required info |
|
requiredDisk | double | ||
requiredCpu | double | ||
timeToLive | int | -1 |
socket parameters |
dscp | int | -1 |
if not -1, set the DSCP (IPv4/IPv6) field of sent packets to this value |
tos | int | -1 |
if not -1, set the Type Of Service (IPv4) / Traffic Class (IPv6) field of sent packets to this value |
packetSize | int | 10B | |
localUePort | int | ||
logger | bool | false |
Properties
Name | Value | Description |
---|---|---|
display | i=block/app;is=s | |
class | MECWarningAlertApp |
Gates
Name | Direction | Size | Description |
---|---|---|---|
mePlatformIn | input | ||
mePlatformOut | output | ||
socketIn | input | ||
socketOut | output |
Source code
// // This module is an application that is dynamically instantiated on a MEC host upon request // from a ~UEWarningAlertApp via a ~DeviceApp. // It receives requests from the UE to be notified when it enters a circular area defined by // its center and radius. This is accomplished by subscribing to the ~LocationService provided // by the MEC Host. This module receives a notification from the Location Service when // the UE enters/exits the area and, in turn, sends a message to the UE. // simple MECWarningAlertApp extends MecAppBase { parameters: @class(MECWarningAlertApp); @display("i=block/app;is=s"); int packetSize @unit(B) = default(10B); int localUePort; bool logger = default(false); }File: src/apps/mec/WarningAlert/MECWarningAlertApp.ned