Exception-less constructor of ServiceInterfaceSkeleton.

notice

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

ConstructionToken created with Preconstruct() API

Precondition

Thread-safety, Reentrance, Result Delivery

Example

PPortExampleServiceProvider::PPortExampleServiceProvider(ara::core::InstanceSpecifier instance_specifier)
: services::exampleservice::skeleton::ExampleServiceSkeleton(instance_specifier) {
}