i_queryqosfactory.java

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

JAVA
40
字号
/*------------------------------------------------------------------------------Name:      I_QueryQosFactory.javaProject:   xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE file------------------------------------------------------------------------------*/package org.xmlBlaster.util.qos;import java.util.Properties;import org.xmlBlaster.util.XmlBlasterException;/** * Parsing/Serializing QoS (quality of service) of publish() and update().  * @see org.xmlBlaster.test.classtest.qos.QueryQosFactoryTest * @author xmlBlaster@marcelruff.info */public interface I_QueryQosFactory{   /**    * Parses the given Qos and returns a QueryQosData holding the data.     * Parsing of update() and publish() QoS is supported here.    * @param e.g. the XML based ASCII string    */   QueryQosData readObject(String xmlQos) throws XmlBlasterException;   /**    * Serialize the given data object.      * <br>    * @param The data object to serialize    * @param extraOffset Formatting hints    * @param props Configuration/formatting hints for the dump (see Constants.TOXML_*)    * @return The serialized representation    */   String writeObject(QueryQosData queryQosData, String extraOffset, Properties props);   /** A human readable name of this factory */   String getName();}

⌨️ 快捷键说明

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