com.tencent.polaris.plugins.router.rule.RuleStatus 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.plugins.router.rule;
/**
* 路由执行结果
*
* @author starkwen
* @date 2020/11/27 11:22 上午
*/
enum RuleStatus {
/**
* 无路由策略
*/
noRule,
/**
* 被调服务路由策略匹配成功
*/
destRuleSucc,
/**
* 被调服务路由策略匹配失败
*/
destRuleFail,
/**
* 主调服务路由策略匹配成功
*/
sourceRuleSucc,
/**
* 主调服务路由策略匹配失败
*/
sourceRuleFail,
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy