⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sqlstatementmbean.java

📁 java开源的企业总线.xmlBlaster
💻 JAVA
字号:
/*------------------------------------------------------------------------------Name:      SqlStatementMBean.javaProject:   xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE file------------------------------------------------------------------------------*/package org.xmlBlaster.contrib.replication;/** * SqlStatementMBean * @author <a href="mailto:michele@laghi.eu">Michele Laghi</a> */public interface SqlStatementMBean {   final static String OK = "ok";   final static String FAILED = "failed";   final static String WAITING = "waiting";      /**    * Gets the status which can either be FAILED, WAITING, OK    * @return    */   String getStatus();      /**    * @return the number of received results (including failed and ok messages)    */   int getReceived();   /**    * @return all clients expected    */   int getAll();      /**     * @return the comma separated list of entries received. The values are the SessionNames of the Slaves already received     */   String getReceivedList();      /**    * @return the number of entries which have failed.    */   int getFailed();   /**    * @return the comma separated list of SessionNames of slaves which have failed    */   String getFailedList();      /**    * @return the original Statement    */   String getStatement();      /**    * @return the 'shall' response: the response given by the DbWatcher (or Master)    */   String getResponse();      /**    * Gets the response of the specified slave    * @param slaveSessionName the session name of the slave for which to retrieve the response.    * @return    */   String getSlaveResponse(String slaveSessionName);      String getReplicationPrefix();      String getRequestId();      String getSlaveList();   }

⌨️ 快捷键说明

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