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

Method get_io_thread_count

implementation/configuration/src/configuration_impl.cpp:2920–2929  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2918}
2919
2920std::size_t configuration_impl::get_io_thread_count(const std::string& _name) const {
2921 std::size_t its_io_thread_count = VSOMEIP_DEFAULT_IO_THREAD_COUNT;
2922
2923 auto found_application = applications_.find(_name);
2924 if (found_application != applications_.end()) {
2925 its_io_thread_count = found_application->second.thread_count_;
2926 }
2927
2928 return its_io_thread_count;
2929}
2930
2931int configuration_impl::get_io_thread_nice_level(const std::string& _name) const {
2932 int its_io_thread_nice_level = VSOMEIP_DEFAULT_IO_THREAD_NICE_LEVEL;

Callers 3

startMethod · 0.80
routing_manager_baseMethod · 0.80

Calls 1

endMethod · 0.80

Tested by

no test coverage detected