xmppserverlistener.java
来自「基于Jabber协议的即时消息服务器」· Java 代码 · 共 36 行
JAVA
36 行
/** * $RCSfile: $ * $Revision: $ * $Date: $ * * Copyright (C) 2006 Jive Software. All rights reserved. * * This software is published under the terms of the GNU Public License (GPL), * a copy of which is included in this distribution. */package org.jivesoftware.wildfire;/** * Interface that let observers be notified when the server has been started or is * about to be stopped. Use {@link XMPPServer#addServerListener(XMPPServerListener)} to * add new listeners. * * @author Gaston Dombiak */public interface XMPPServerListener { /** * Notification message indicating that the server has been started. At this point * all server modules have been initialized and started. Message sending and receiving * is now possible. However, some plugins may still be pending to be loaded. */ void serverStarted(); /** * Notification message indication that the server is about to be stopped. At this point * all modules are still running so all services are still available. */ void serverStopping();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?