diff options
| author | Gordon Sim <gsim@apache.org> | 2009-11-16 17:30:23 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2009-11-16 17:30:23 +0000 |
| commit | 771ac3e530a701120a933034f29659d16d5b4e85 (patch) | |
| tree | 10216c075c1280ca13bfe8d946026ac26fbebc5b /cpp/src/qpid/messaging/Receiver.cpp | |
| parent | 9c3dda9cf4bc359e68587767dd2ab072cf4a1298 (diff) | |
| download | qpid-python-771ac3e530a701120a933034f29659d16d5b4e85.tar.gz | |
QPID-664: Remove start()/stop() methods from api
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@880863 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/messaging/Receiver.cpp')
| -rw-r--r-- | cpp/src/qpid/messaging/Receiver.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/cpp/src/qpid/messaging/Receiver.cpp b/cpp/src/qpid/messaging/Receiver.cpp index 76750cfc59..ac5d93319f 100644 --- a/cpp/src/qpid/messaging/Receiver.cpp +++ b/cpp/src/qpid/messaging/Receiver.cpp @@ -42,8 +42,6 @@ bool Receiver::get(Message& message, qpid::sys::Duration timeout) { return impl- Message Receiver::get(qpid::sys::Duration timeout) { return impl->get(timeout); } bool Receiver::fetch(Message& message, qpid::sys::Duration timeout) { return impl->fetch(message, timeout); } Message Receiver::fetch(qpid::sys::Duration timeout) { return impl->fetch(timeout); } -void Receiver::start() { impl->start(); } -void Receiver::stop() { impl->stop(); } void Receiver::setCapacity(uint32_t c) { impl->setCapacity(c); } uint32_t Receiver::getCapacity() { return impl->getCapacity(); } uint32_t Receiver::available() { return impl->available(); } |
