cn.lastwhisper.trace.factory.DefaultTraceNodeFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trace-spring-boot-starter Show documentation
Show all versions of trace-spring-boot-starter Show documentation
Used to invoke the chain visualization.
The newest version!
package cn.lastwhisper.trace.factory;
import cn.lastwhisper.trace.model.Method;
import cn.lastwhisper.trace.model.Node;
/**
* 普通结点
* @author lastwhisper
* @date 2020/4/4
*/
public class DefaultTraceNodeFactory implements TraceNodeFactory {
@Override
public Node getNode() {
return new Node();
}
@Override
public Method getMethod() {
return new Method();
}
}