diff options
| author | Gordon Sim <gsim@apache.org> | 2010-04-26 10:00:09 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2010-04-26 10:00:09 +0000 |
| commit | 856bbbf553f80f7357dea4ccb0e8890e754e0fb1 (patch) | |
| tree | c309c567c66fd46b710e4be01b8fedbde02aa798 /cpp/src | |
| parent | 67c782c91a1c3d600d8c7ee144fe1aa77021c4c7 (diff) | |
| download | qpid-python-856bbbf553f80f7357dea4ccb0e8890e754e0fb1.tar.gz | |
QPID-2548: applied patch from francesco emmi
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@937990 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
| -rw-r--r-- | cpp/src/qpid/client/SubscriptionManager.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpp/src/qpid/client/SubscriptionManager.cpp b/cpp/src/qpid/client/SubscriptionManager.cpp index 7eac3c541b..485361d577 100644 --- a/cpp/src/qpid/client/SubscriptionManager.cpp +++ b/cpp/src/qpid/client/SubscriptionManager.cpp @@ -86,6 +86,10 @@ void SubscriptionManager::setFlowControl(const std::string& name, const FlowCont 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)); } |
