You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
737 B
33 lines
737 B
3 years ago
|
/*
|
||
|
* Copyright (C), 2018-2021
|
||
|
* Project: starter
|
||
|
* FileName: PluginMonitor
|
||
|
* Author: fr.open
|
||
|
* Date: 2021/3/30 15:10
|
||
|
*/
|
||
|
package com.fr.plugin.ihef;
|
||
|
|
||
|
import com.fr.plugin.context.PluginContext;
|
||
|
import com.fr.plugin.ihef.config.IhefConfig;
|
||
|
import com.fr.plugin.observer.inner.AbstractPluginLifecycleMonitor;
|
||
|
|
||
|
/**
|
||
|
* <Function Description><br>
|
||
|
* <PluginMonitor>
|
||
|
*
|
||
|
* @author fr.open
|
||
|
* @since 1.0.0
|
||
|
*/
|
||
|
public class PluginMonitor extends AbstractPluginLifecycleMonitor {
|
||
|
public PluginMonitor() {
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void afterRun(PluginContext pluginContext) {
|
||
|
IhefConfig.getInstance();
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void beforeStop(PluginContext pluginContext) {
|
||
|
}
|
||
|
}
|