Exception-less constructor of ServiceInterfaceSkeleton.

Note: Due to the internal resource management strategy, all created skeletons must be released before the runtime is destroyed. They cannot be stored in variables with a longer lifespan than the application’s main()
. Failure to comply may result in improper shutdown of the communication middleware, potentially causing a segmentation fault.
Syntax
ExampleServiceInterfaceSkeleton::ExampleServiceInterfaceSkeleton(ConstructionToken && token)
Parameters
in | token |
|
Precondition
- Runtime must be initialized.
Thread-safety, Reentrance, Result Delivery
- Threadsafe : FALSE
- Reentrant : FALSE
- Synchronous : TRUE
Example
PPortExampleServiceProvider::PPortExampleServiceProvider(ara::core::InstanceSpecifier instance_specifier)
: services::exampleservice::skeleton::ExampleServiceSkeleton(instance_specifier) {
}