activemq-cpp-3.6.0
ResourceLifecycleManager.h
Go to the documentation of this file.
1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one or more
3  * contributor license agreements. See the NOTICE file distributed with
4  * this work for additional information regarding copyright ownership.
5  * The ASF licenses this file to You under the Apache License, Version 2.0
6  * (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 
18 #ifndef _ACTIVEMQ_CMSUTIL_RESOURCELIFECYCLEMANAGER_H_
19 #define _ACTIVEMQ_CMSUTIL_RESOURCELIFECYCLEMANAGER_H_
20 
21 #include <cms/Connection.h>
22 #include <cms/Session.h>
23 #include <cms/Destination.h>
24 #include <cms/MessageProducer.h>
25 #include <cms/MessageConsumer.h>
26 #include <activemq/util/Config.h>
27 #include <decaf/util/LinkedList.h>
28 
29 namespace activemq {
30 namespace cmsutil {
31 
38  private:
39 
45 
46  ConnectionList connections;
47  SessionList sessions;
48  DestinationList destinations;
49  ProducerList producers;
50  ConsumerList consumers;
51 
52  protected:
53 
56 
57  public:
58 
60 
64  virtual ~ResourceLifecycleManager();
65 
75  void addConnection(cms::Connection* connection);
76 
86  void addSession(cms::Session* session);
87 
97  void addDestination(cms::Destination* dest);
98 
108  void addMessageProducer(cms::MessageProducer* producer);
109 
119  void addMessageConsumer(cms::MessageConsumer* consumer);
120 
126  void destroy();
127 
132  void releaseAll();
133 
134  };
135 
136 }}
137 
138 #endif /*_ACTIVEMQ_CMSUTIL_RESOURCELIFECYCLEMANAGER_H_*/