diff options
| author | Carl C. Trieloff <cctrieloff@apache.org> | 2007-09-08 00:14:24 +0000 |
|---|---|---|
| committer | Carl C. Trieloff <cctrieloff@apache.org> | 2007-09-08 00:14:24 +0000 |
| commit | 783b718d0b270121cd2e597424d0c81adea77a38 (patch) | |
| tree | 22dbaa86d0ca3387ddc63ddc32c6f77a214ba386 /cpp/src/qpid/broker/NullMessageStore.cpp | |
| parent | cef8cb403ef217ed797c261933ed8e89b174ea60 (diff) | |
| download | qpid-python-783b718d0b270121cd2e597424d0c81adea77a38.tar.gz | |
updates to be able to manage lifecycle of async store
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@573762 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/NullMessageStore.cpp')
| -rw-r--r-- | cpp/src/qpid/broker/NullMessageStore.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/broker/NullMessageStore.cpp b/cpp/src/qpid/broker/NullMessageStore.cpp index 13f7dd3b9a..a86cb5f8c5 100644 --- a/cpp/src/qpid/broker/NullMessageStore.cpp +++ b/cpp/src/qpid/broker/NullMessageStore.cpp @@ -49,12 +49,12 @@ using namespace qpid::broker; NullMessageStore::NullMessageStore(bool _warn) : warn(_warn){} -void NullMessageStore::create(const PersistableQueue& queue) +void NullMessageStore::create(PersistableQueue& queue) { QPID_LOG(info, "Can't create durable queue '" << queue.getName() << "'. Persistence not enabled."); } -void NullMessageStore::destroy(const PersistableQueue& queue) +void NullMessageStore::destroy(PersistableQueue& queue) { QPID_LOG(info, "Can't destroy durable queue '" << queue.getName() << "'. Persistence not enabled."); } |
