summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/qpid/broker/SessionHandler.cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-11-22 23:55:39 +0000
committerAlan Conway <aconway@apache.org>2007-11-22 23:55:39 +0000
commit2e75ce2a7bc1a94c294def9f70789c49770c2470 (patch)
treedc6eb725b33551572647acd7d3e386010ac9160c /qpid/cpp/src/qpid/broker/SessionHandler.cpp
parent094141a31480e13811d3653d799b30856faa9393 (diff)
downloadqpid-python-2e75ce2a7bc1a94c294def9f70789c49770c2470.tar.gz
Added framing::BodyHolder:
- Uniform holder for all body types, replaces MethodHolder. - Uses in_place constructors to avoid avoid body copy. framing::AMQFrame: - Holds body in heap-allocated intrusive_ptr<BodyHolder> - Uses in_place constructors to avoid avoid body copy. Removed/downgraded to TODO many redundant FIXME comments. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@597513 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/qpid/broker/SessionHandler.cpp')
-rw-r--r--qpid/cpp/src/qpid/broker/SessionHandler.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/qpid/cpp/src/qpid/broker/SessionHandler.cpp b/qpid/cpp/src/qpid/broker/SessionHandler.cpp
index b05e22c7bc..a142af2e1a 100644
--- a/qpid/cpp/src/qpid/broker/SessionHandler.cpp
+++ b/qpid/cpp/src/qpid/broker/SessionHandler.cpp
@@ -124,13 +124,13 @@ void SessionHandler::resume(const Uuid& id) {
void SessionHandler::flow(bool /*active*/) {
assertAttached("flow");
- // FIXME aconway 2007-09-19: Removed in 0-10, remove
+ // TODO aconway 2007-09-19: Removed in 0-10, remove
assert(0); throw NotImplementedException("session.flow");
}
void SessionHandler::flowOk(bool /*active*/) {
assertAttached("flowOk");
- // FIXME aconway 2007-09-19: Removed in 0-10, remove
+ // TODO aconway 2007-09-19: Removed in 0-10, remove
assert(0); throw NotImplementedException("session.flowOk");
}
@@ -181,7 +181,7 @@ void SessionHandler::ack(uint32_t cumulativeSeenMark,
}
void SessionHandler::highWaterMark(uint32_t /*lastSentMark*/) {
- // FIXME aconway 2007-10-02: may be removed from spec.
+ // TODO aconway 2007-10-02: may be removed from spec.
assert(0); throw NotImplementedException("session.high-water-mark");
}