Dear developers,
I have created a multi-UE mec app by extending the MultiUeMecApp.
When I launched my simulation, I got the following error:
I investigated and I noticed that MultiUeMecApp module does not inherit from MecAppBase.
The MecAppBase module has the following parameters
string vimModule = default("^.vim");
string mecPlatformModule = default("^.mecPlatform");
string serviceRegistryModule = default("^.mecPlatform.serviceRegistry");
During the initialization phase of my module, the initialized method of MecAppBase is called and the error is thrown.
I solved by copying the 3 lines of the MecAppBase.
Is it possible to let MultiUeMecApp.ned extend MecAppBase?
Was this a specific design choice?
Thank you for your time.
Dear developers,
I have created a multi-UE mec app by extending the
MultiUeMecApp.When I launched my simulation, I got the following error:
I investigated and I noticed that
MultiUeMecAppmodule does not inherit fromMecAppBase.The
MecAppBasemodule has the following parametersDuring the initialization phase of my module, the
initializedmethod ofMecAppBaseis called and the error is thrown.I solved by copying the 3 lines of the
MecAppBase.Is it possible to let
MultiUeMecApp.nedextendMecAppBase?Was this a specific design choice?
Thank you for your time.