| 4543 | } |
| 4544 | |
| 4545 | bool configuration_impl::is_tp_client(service_t _service, instance_t _instance, method_t _method) const { |
| 4546 | |
| 4547 | bool ret(false); |
| 4548 | |
| 4549 | if (auto its_service = find_service({_service, _instance}); its_service) { |
| 4550 | ret = (its_service->tp_client_config_.contains(_method)); |
| 4551 | } |
| 4552 | |
| 4553 | return ret; |
| 4554 | } |
| 4555 | |
| 4556 | bool configuration_impl::is_tp_service(service_t _service, instance_t _instance, method_t _method) const { |
| 4557 |
no test coverage detected