MCPcopy Create free account
hub / github.com/COVESA/vsomeip / create_message

Method create_message

implementation/runtime/src/runtime_impl.cpp:57–64  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

55}
56
57std::shared_ptr<message> runtime_impl::create_message(bool _reliable) const {
58 auto its_message = std::make_shared<message_impl>();
59 its_message->set_protocol_version(VSOMEIP_PROTOCOL_VERSION);
60 its_message->set_return_code(return_code_e::E_OK);
61 its_message->set_reliable(_reliable);
62 its_message->set_interface_version(DEFAULT_MAJOR);
63 return its_message;
64}
65
66std::shared_ptr<message> runtime_impl::create_request(bool _reliable) const {
67 auto its_request = std::make_shared<message_impl>();

Callers 5

sendMethod · 0.80
runMethod · 0.80
on_messageMethod · 0.80
TESTFunction · 0.80
send_errorMethod · 0.80

Calls 4

set_protocol_versionMethod · 0.80
set_return_codeMethod · 0.80
set_interface_versionMethod · 0.80
set_reliableMethod · 0.45

Tested by 3

runMethod · 0.64
on_messageMethod · 0.64
TESTFunction · 0.64