00001 /* 00002 * Licensed to the Apache Software Foundation (ASF) under one or more 00003 * contributor license agreements. See the NOTICE file distributed with 00004 * this work for additional information regarding copyright ownership. 00005 * The ASF licenses this file to You under the Apache License, Version 2.0 00006 * (the "License"); you may not use this file except in compliance with 00007 * the License. You may obtain a copy of the License at 00008 * 00009 * http://www.apache.org/licenses/LICENSE-2.0 00010 * 00011 * Unless required by applicable law or agreed to in writing, software 00012 * distributed under the License is distributed on an "AS IS" BASIS, 00013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00014 * See the License for the specific language governing permissions and 00015 * limitations under the License. 00016 */ 00017 00018 #ifndef _ACTIVEMQ_COMMANDS_MESSAGEDISPATCH_H_ 00019 #define _ACTIVEMQ_COMMANDS_MESSAGEDISPATCH_H_ 00020 00021 // Turn off warning message for ignored exception specification 00022 #ifdef _MSC_VER 00023 #pragma warning( disable : 4290 ) 00024 #endif 00025 00026 #include <activemq/commands/ActiveMQDestination.h> 00027 #include <activemq/commands/BaseCommand.h> 00028 #include <activemq/commands/ConsumerId.h> 00029 #include <activemq/commands/Message.h> 00030 #include <activemq/util/Config.h> 00031 #include <decaf/lang/Exception.h> 00032 #include <decaf/lang/Pointer.h> 00033 #include <string> 00034 #include <vector> 00035 00036 namespace activemq { 00037 namespace commands { 00038 00039 using decaf::lang::Pointer; 00040 00041 /* 00042 * 00043 * Command code for OpenWire format for MessageDispatch 00044 * 00045 * NOTE!: This file is auto generated - do not modify! 00046 * if you need to make a change, please see the Java Classes 00047 * in the activemq-cpp-openwire-generator module 00048 * 00049 */ 00050 class AMQCPP_API MessageDispatch : public BaseCommand { 00051 protected: 00052 00053 Pointer<ConsumerId> consumerId; 00054 Pointer<ActiveMQDestination> destination; 00055 Pointer<Message> message; 00056 int redeliveryCounter; 00057 00058 public: 00059 00060 const static unsigned char ID_MESSAGEDISPATCH = 21; 00061 00062 private: 00063 00064 decaf::lang::Exception rollbackCause; 00065 00066 private: 00067 00068 MessageDispatch(const MessageDispatch&); 00069 MessageDispatch& operator= (const MessageDispatch&); 00070 00071 public: 00072 00073 MessageDispatch(); 00074 00075 virtual ~MessageDispatch(); 00076 00077 virtual unsigned char getDataStructureType() const; 00078 00079 virtual MessageDispatch* cloneDataStructure() const; 00080 00081 virtual void copyDataStructure(const DataStructure* src); 00082 00083 virtual std::string toString() const; 00084 00085 virtual bool equals(const DataStructure* value) const; 00086 00087 void setRollbackCause(const decaf::lang::Exception& cause); 00088 00089 decaf::lang::Exception getRollbackCause() const; 00090 00091 virtual const Pointer<ConsumerId>& getConsumerId() const; 00092 virtual Pointer<ConsumerId>& getConsumerId(); 00093 virtual void setConsumerId( const Pointer<ConsumerId>& consumerId ); 00094 00095 virtual const Pointer<ActiveMQDestination>& getDestination() const; 00096 virtual Pointer<ActiveMQDestination>& getDestination(); 00097 virtual void setDestination( const Pointer<ActiveMQDestination>& destination ); 00098 00099 virtual const Pointer<Message>& getMessage() const; 00100 virtual Pointer<Message>& getMessage(); 00101 virtual void setMessage( const Pointer<Message>& message ); 00102 00103 virtual int getRedeliveryCounter() const; 00104 virtual void setRedeliveryCounter( int redeliveryCounter ); 00105 00109 virtual bool isMessageDispatch() const { 00110 return true; 00111 } 00112 00113 virtual Pointer<Command> visit(activemq::state::CommandVisitor* visitor); 00114 00115 }; 00116 00117 }} 00118 00119 #endif /*_ACTIVEMQ_COMMANDS_MESSAGEDISPATCH_H_*/
1.6.1