1 /*------------------------------------------------------------------------------
 2 Name:      UnSubscribeReturnQos.h
 3 Project:   xmlBlaster.org
 4 Copyright: xmlBlaster.org, see xmlBlaster-LICENSE file
 5 ------------------------------------------------------------------------------*/
 6 
 7 /**
 8  * Handling the returned QoS (quality of service) of a unSubscribe() call. 
 9  * <p />
10  * If you are a Java client and use the XmlBlasterConnection helper class
11  * you get this object as the unSubscribe() return value.
12  * <p />
13  * Example:
14  * <pre>
15  *   &lt;qos>
16  *     &lt;state id='OK' info='QUEUED[bilbo]'/>
17  *     &lt;subscribe id='_subId:1/>
18  *  &lt;/qos>
19  * </pre>
20  * @see org.xmlBlaster.test.classtest.qos.StatusQosFactoryTest
21  * @see <a href="http://www.xmlBlaster.org/xmlBlaster/doc/requirements/interface.unSubscribe.html" target="others">the interface.unSubscribe requirement</a>
22  */
23 
24 #ifndef _CLIENT_QOS_UNSUBSCRIBERETURNQOS_H
25 #define _CLIENT_QOS_UNSUBSCRIBERETURNQOS_H
26 
27 #include <client/qos/SubscribeReturnQos.h>
28 
29 namespace org { namespace xmlBlaster { namespace client { namespace qos {
30 
31 typedef SubscribeReturnQos UnSubscribeReturnQos;
32 
33 }}}} // namespace
34 
35 #endif


syntax highlighted by Code2HTML, v. 0.9.1