From cb65298edd497295d215220397f8fedff7b14aca Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Tue, 14 Aug 2007 16:15:26 +0000 Subject: Removed unused types: RequestId, ResponseId, MethodContext. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@565821 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/cluster/SessionManager.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpp/src/qpid/cluster/SessionManager.cpp') diff --git a/cpp/src/qpid/cluster/SessionManager.cpp b/cpp/src/qpid/cluster/SessionManager.cpp index 715ed7817c..a4efa939fc 100644 --- a/cpp/src/qpid/cluster/SessionManager.cpp +++ b/cpp/src/qpid/cluster/SessionManager.cpp @@ -57,7 +57,7 @@ using namespace broker; void handle(AMQFrame& frame) { AMQMethodBody* body=dynamic_cast(frame.body.get()); assert(body); - body->invoke(adapter, MethodContext()); // TODO aconway 2007-07-24: Remove MethodContext + body->invoke(adapter); } // Dummy methods. @@ -65,9 +65,9 @@ using namespace broker; virtual void handleContent(boost::shared_ptr){} virtual void handleHeartbeat(boost::shared_ptr){} virtual bool isOpen() const{ return true; } - virtual void handleMethodInContext(shared_ptr, const MethodContext&){} + virtual void handleMethod(shared_ptr){} // No-op send. - virtual RequestId send(shared_ptr) { return 0; } + virtual void send(shared_ptr) {} //delivery adapter methods, also no-ops: virtual DeliveryId deliver(Message::shared_ptr&, DeliveryToken::shared_ptr) { return 0; } -- cgit v1.2.1