com.yomahub.akali.strategy.AkaliStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of akali Show documentation
Show all versions of akali Show documentation
Local fallback and hotspot solutions in high traffic scenarios
The newest version!
package com.yomahub.akali.strategy;
import com.yomahub.akali.enums.AkaliStrategyEnum;
import java.lang.reflect.Method;
public interface AkaliStrategy {
AkaliStrategyEnum getStrategy();
Object process(Object bean, Method method, Object[] args) throws Exception;
}