📄 rulesupdatedevent.java
字号:
package org.jivesoftware.openfire.plugin.cluster;import org.jivesoftware.openfire.plugin.rules.RuleManager;import org.jivesoftware.openfire.plugin.rules.RuleManagerProxy;import org.jivesoftware.util.cache.ClusterTask;import java.io.IOException;import java.io.ObjectInput;import java.io.ObjectOutput;public class RulesUpdatedEvent implements ClusterTask { public RulesUpdatedEvent() { } public Object getResult() { return null; } public void run() { RuleManager ruleManager = new RuleManagerProxy(); ruleManager.rulesUpdated(); } public void writeExternal(ObjectOutput objectOutput) throws IOException { } public void readExternal(ObjectInput objectInput) throws IOException, ClassNotFoundException { }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -