org.springframework.cloud.netflix.ribbon.ServerIntrospector Java Examples

The following examples show how to use org.springframework.cloud.netflix.ribbon.ServerIntrospector. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: RadarRibbonClientConfiguration.java    From radar with Apache License 2.0 4 votes vote down vote up
@Bean
public ServerIntrospector serverIntrospector() {
	return new DefaultServerIntrospector();
}
 
Example #2
Source File: ApimlRetryableClient.java    From api-layer with Eclipse Public License 2.0 4 votes vote down vote up
public ApimlRetryableClient(CloseableHttpClient delegate, IClientConfig config, ServerIntrospector serverIntrospector, LoadBalancedRetryFactory loadBalancedRetryFactory) {
    super(delegate, config, serverIntrospector, loadBalancedRetryFactory);
    this.introspector = serverIntrospector;
}