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.
34 lines
728 B
34 lines
728 B
3 years ago
|
/*
|
||
|
* Copyright (C), 2018-2021
|
||
|
* Project: starter
|
||
|
* FileName: PluginMonitor
|
||
|
* Author: xx
|
||
|
* Date: 2021/3/30 15:10
|
||
|
*/
|
||
|
package com.fr.plugin.ishc;
|
||
|
|
||
|
import com.fr.plugin.context.PluginContext;
|
||
|
import com.fr.plugin.ishc.config.IshcConfig;
|
||
|
import com.fr.plugin.observer.inner.AbstractPluginLifecycleMonitor;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* <Function Description><br>
|
||
|
* <PluginMonitor>
|
||
|
*
|
||
|
* @author xx
|
||
|
* @since 1.0.0
|
||
|
*/
|
||
|
public class PluginMonitor extends AbstractPluginLifecycleMonitor {
|
||
|
public PluginMonitor() {
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void afterRun(PluginContext pluginContext) {
|
||
|
IshcConfig.getInstance();
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void beforeStop(PluginContext pluginContext) {
|
||
|
}
|
||
|
}
|