All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nepxion.discovery.plugin.configcenter.adapter.ConfigAdapter Maven / Gradle / Ivy

There is a newer version: 6.22.0
Show newest version
package com.nepxion.discovery.plugin.configcenter.adapter;

/**
 * 

Title: Nepxion Discovery

*

Description: Nepxion Discovery

*

Copyright: Copyright (c) 2017-2050

*

Company: Nepxion

* @author Haojun Ren * @version 1.0 */ import org.springframework.beans.factory.annotation.Autowired; import com.nepxion.discovery.plugin.configcenter.loader.RemoteConfigLoader; import com.nepxion.discovery.plugin.framework.event.PluginEventWapper; import com.nepxion.discovery.plugin.framework.event.RuleClearedEvent; import com.nepxion.discovery.plugin.framework.event.RuleUpdatedEvent; public abstract class ConfigAdapter extends RemoteConfigLoader { @Autowired private PluginEventWapper pluginEventWapper; public void fireRuleUpdated(RuleUpdatedEvent ruleUpdatedEvent, boolean async) { pluginEventWapper.fireRuleUpdated(ruleUpdatedEvent, async); } public void fireRuleCleared(RuleClearedEvent ruleClearedEvent, boolean async) { pluginEventWapper.fireRuleCleared(ruleClearedEvent, async); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy