1 implementation of IServiceEndpointSelector
Microsoft.Extensions.ServiceDiscovery (1)
LoadBalancing\RoundRobinServiceEndpointSelector.cs (1)
9internal sealed class RoundRobinServiceEndpointSelector : IServiceEndpointSelector
4 references to IServiceEndpointSelector
Microsoft.Extensions.ServiceDiscovery (4)
Http\HttpServiceEndpointResolver.cs (3)
157var selector = serviceProvider.GetService<IServiceEndpointSelector>() ?? new RoundRobinServiceEndpointSelector(); 166private readonly IServiceEndpointSelector _selector; 173public ResolverEntry(ServiceEndpointWatcher watcher, IServiceEndpointSelector selector)
ServiceDiscoveryServiceCollectionExtensions.cs (1)
65services.TryAddTransient<IServiceEndpointSelector, RoundRobinServiceEndpointSelector>();