类 AbstractBeatCheckInterceptor
- java.lang.Object
-
- com.alibaba.nacos.naming.healthcheck.heartbeat.AbstractBeatCheckInterceptor
-
- 所有已实现的接口:
NacosNamingInterceptor<InstanceBeatCheckTask>
- 直接已知子类:
InstanceBeatCheckResponsibleInterceptor,InstanceEnableBeatCheckInterceptor,ServiceEnableBeatCheckInterceptor
public abstract class AbstractBeatCheckInterceptor extends java.lang.Object implements NacosNamingInterceptor<InstanceBeatCheckTask>
Abstract Beat check Interceptor.- 作者:
- xiweng.yy
-
-
构造器概要
构造器 构造器 说明 AbstractBeatCheckInterceptor()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 booleanisInterceptType(java.lang.Class<?> type)Judge whether the input type is intercepted by this Interceptor.-
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
从接口继承的方法 com.alibaba.nacos.naming.interceptor.NacosNamingInterceptor
intercept, order
-
-
-
-
方法详细资料
-
isInterceptType
public boolean isInterceptType(java.lang.Class<?> type)
从接口复制的说明:NacosNamingInterceptorJudge whether the input type is intercepted by this Interceptor.This method only should judge the object type whether need be do intercept. Not the intercept logic.
- 指定者:
isInterceptType在接口中NacosNamingInterceptor<InstanceBeatCheckTask>- 参数:
type- type- 返回:
- true if the input type is intercepted by this Interceptor, otherwise false
-
-