register<T extends OnConfigTableInterceptor> method
void
register<T extends OnConfigTableInterceptor>(
- T? config
配置表对象注册 OnConfigTableInterceptor实现类
Implementation
void register<T extends OnConfigTableInterceptor>(T? config) {
if (config == null) {
return;
}
ConfigManager.instance.addConfig(_configTableKey, config);
}