📄 i_storageproblemnotifier.java
字号:
/*------------------------------------------------------------------------------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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -