com.tencent.polaris.api.rpc.GetHealthyInstancesRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polaris-all Show documentation
Show all versions of polaris-all Show documentation
All in one project for polaris-java
package com.tencent.polaris.api.rpc;
/**
* @author lepdou 2022-04-21
*/
public class GetHealthyInstancesRequest extends GetAllInstancesRequest {
/**
* 是否返回熔断实例,默认不返回
*/
private Boolean IncludeCircuitBreakInstances;
public Boolean getIncludeCircuitBreakInstances() {
return IncludeCircuitBreakInstances;
}
public void setIncludeCircuitBreakInstances(Boolean includeCircuitBreakInstances) {
this.IncludeCircuitBreakInstances = includeCircuitBreakInstances;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy