/opt/workspace/qpid/tags/M2/Final/cpp/lib/common/framing/BodyHandler.h

00001 /*
00002  *
00003  * Licensed to the Apache Software Foundation (ASF) under one
00004  * or more contributor license agreements.  See the NOTICE file
00005  * distributed with this work for additional information
00006  * regarding copyright ownership.  The ASF licenses this file
00007  * to you under the Apache License, Version 2.0 (the
00008  * "License"); you may not use this file except in compliance
00009  * with the License.  You may obtain a copy of the License at
00010  * 
00011  *   http://www.apache.org/licenses/LICENSE-2.0
00012  * 
00013  * Unless required by applicable law or agreed to in writing,
00014  * software distributed under the License is distributed on an
00015  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
00016  * KIND, either express or implied.  See the License for the
00017  * specific language governing permissions and limitations
00018  * under the License.
00019  *
00020  */
00021 #include <string>
00022 
00023 #ifndef _BodyHandler_
00024 #define _BodyHandler_
00025 
00026 #include <AMQMethodBody.h>
00027 #include <AMQHeaderBody.h>
00028 #include <AMQContentBody.h>
00029 #include <AMQHeartbeatBody.h>
00030 
00031 namespace qpid {
00032 namespace framing {
00033 
00034     class BodyHandler{
00035     public:
00036         virtual ~BodyHandler();
00037         virtual void handleMethod(AMQMethodBody::shared_ptr body) = 0;
00038         virtual void handleHeader(AMQHeaderBody::shared_ptr body) = 0;
00039         virtual void handleContent(AMQContentBody::shared_ptr body) = 0;
00040         virtual void handleHeartbeat(AMQHeartbeatBody::shared_ptr body) = 0;
00041 
00042         void handleBody(AMQBody::shared_ptr& body);
00043     };
00044 
00045     class UnknownBodyType{
00046     public:
00047         const u_int16_t type;
00048         inline UnknownBodyType(u_int16_t _type) : type(_type){}
00049     };
00050 }
00051 }
00052 
00053 
00054 #endif

Generated on Mon Nov 26 19:13:17 2007 for Qpid by  doxygen 1.5.1