| 2986 | } |
| 2987 | |
| 2988 | bool routing_manager_impl::is_locally_available(service_t _service, instance_t _instance, major_version_t _major) const { |
| 2989 | std::scoped_lock its_lock(services_state_mutex_); |
| 2990 | return local_services_table_.is_available(_service, _instance, _major); |
| 2991 | } |
| 2992 | |
| 2993 | void routing_manager_impl::add_requested_service(client_t _client, service_t _service, instance_t _instance, major_version_t _major, |
| 2994 | minor_version_t _minor) { |
nothing calls this directly
no test coverage detected