Forgotten method on SubscriptionManager
---------------------------------------

                 Key: QPID-2548
                 URL: https://issues.apache.org/jira/browse/QPID-2548
             Project: Qpid
          Issue Type: Bug
          Components: C++ Client
    Affects Versions: 0.6
            Reporter: francesco 
            Priority: Trivial


SubscriptionManager implementation has method SetDefaultSettings. But this is 
not present in the interface.

Patch to be applied:

Index: src/qpid/client/SubscriptionManager.cpp
===================================================================
--- src/qpid/client/SubscriptionManager.cpp     (revisione 822651)
+++ src/qpid/client/SubscriptionManager.cpp     (copia locale)
@@ -86,6 +86,10 @@
     impl->setFlowControl(name, flow);
 }

+void SubscriptionManager::setDefaultSettings(const SubscriptionSettings& s){
+       impl->setDefaultSettings(s);
+}
+
 void SubscriptionManager::setFlowControl(const std::string& name, uint32_t 
messages,  uint32_t bytes, bool window) {
     impl->setFlowControl(name, FlowControl(messages, bytes, window));
 }


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:[email protected]

Reply via email to