i_storageproblemnotifier.java

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

JAVA
23
字号
/*------------------------------------------------------------------------------Name:      I_StorageProblemNotifier.javaProject:   xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE file------------------------------------------------------------------------------*/package org.xmlBlaster.util.queue;public interface I_StorageProblemNotifier{   /**    * registers a new listener to be notified. If the registration was not done (for example if the     * implementation only allows one listener and there is already one), then a 'false' is returned,    * otherwise 'true' is returned.    */   public boolean registerStorageProblemListener(I_StorageProblemListener listener);   /**    * unregisters a listener. If there is no such listener 'false' is returned, otherwise 'true' is    * returned.    */   public boolean unRegisterStorageProblemListener(I_StorageProblemListener listener);}

⌨️ 快捷键说明

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