i_connectionlistener.java

来自「java开源的企业总线.xmlBlaster」· Java 代码 · 共 30 行

JAVA
30
字号
/*------------------------------------------------------------------------------Name:      I_ConnectionListener.javaProject:   xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE file------------------------------------------------------------------------------*/package org.xmlBlaster.util.queue.jdbc;/** * Interface you need to implement to receive notifications from the  * JdbcConnectionPool that the pool has successfully reconnected * * @author xmlBlaster@marcelruff.info * @author michele@laghi.eu */public interface I_ConnectionListener{  /**   * Notification that a disconnection from the DB has occured.   */   public void disconnected();  /**   * Notification that a disconnection from the DB has occured.   */   public void reconnected();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?