Qpid Proton C++  0.26.0
session.hpp
Go to the documentation of this file.
1 #ifndef PROTON_SESSION_HPP
2 #define PROTON_SESSION_HPP
3 
4 /*
5  *
6  * Licensed to the Apache Software Foundation (ASF) under one
7  * or more contributor license agreements. See the NOTICE file
8  * distributed with this work for additional information
9  * regarding copyright ownership. The ASF licenses this file
10  * to you under the Apache License, Version 2.0 (the
11  * "License"); you may not use this file except in compliance
12  * with the License. You may obtain a copy of the License at
13  *
14  * http://www.apache.org/licenses/LICENSE-2.0
15  *
16  * Unless required by applicable law or agreed to in writing,
17  * software distributed under the License is distributed on an
18  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
19  * KIND, either express or implied. See the License for the
20  * specific language governing permissions and limitations
21  * under the License.
22  *
23  */
24 
25 #include "./fwd.hpp"
26 #include "./internal/export.hpp"
27 #include "./endpoint.hpp"
28 #include "./receiver.hpp"
29 #include "./sender.hpp"
30 
31 #include <string>
32 
35 
36 struct pn_session_t;
37 
38 namespace proton {
39 
41 class
42 PN_CPP_CLASS_EXTERN session : public internal::object<pn_session_t>, public endpoint {
43  public:
45  PN_CPP_EXTERN session(pn_session_t* s) : internal::object<pn_session_t>(s) {}
47 
48  public:
50  session() : internal::object<pn_session_t>(0) {}
51 
52  PN_CPP_EXTERN ~session();
53 
54  PN_CPP_EXTERN bool uninitialized() const;
55  PN_CPP_EXTERN bool active() const;
56  PN_CPP_EXTERN bool closed() const;
57 
58  PN_CPP_EXTERN class error_condition error() const;
59 
63  PN_CPP_EXTERN void open();
64 
66  PN_CPP_EXTERN void open(const session_options &opts);
67 
68  PN_CPP_EXTERN void close();
69  PN_CPP_EXTERN void close(const error_condition&);
70 
72  PN_CPP_EXTERN class container &container() const;
73 
75  PN_CPP_EXTERN class work_queue& work_queue() const;
76 
78  PN_CPP_EXTERN class connection connection() const;
79 
81  PN_CPP_EXTERN sender open_sender(const std::string &addr);
82 
84  PN_CPP_EXTERN sender open_sender(const std::string &addr, const sender_options &opts);
85 
87  PN_CPP_EXTERN receiver open_receiver(const std::string &addr);
88 
90  PN_CPP_EXTERN receiver open_receiver(const std::string &addr, const receiver_options &opts);
91 
93  PN_CPP_EXTERN size_t incoming_bytes() const;
94 
96  PN_CPP_EXTERN size_t outgoing_bytes() const;
97 
99  PN_CPP_EXTERN sender_range senders() const;
100 
102  PN_CPP_EXTERN receiver_range receivers() const;
103 
105  friend class internal::factory<session>;
106  friend class session_iterator;
108 };
109 
111 
113 class session_iterator : public internal::iter_base<session, session_iterator> {
114  public:
115  explicit session_iterator(session s = 0) : internal::iter_base<session, session_iterator>(s) {}
116 
118  PN_CPP_EXTERN session_iterator operator++();
119 };
120 
122 typedef internal::iter_range<session_iterator> session_range;
123 
125 
126 } // proton
127 
128 #endif // PROTON_SESSION_HPP
A top-level container of connections, sessions, and links.
Definition: container.hpp:50
A channel for sending messages.
A channel for sending messages.
Definition: sender.hpp:39
Options for creating a sender.
Definition: sender_options.hpp:57
Forward declarations.
A connection to a remote AMQP peer.
Definition: connection.hpp:44
The base class for session, connection, and link.
Definition: endpoint.hpp:36
A container of senders and receivers.
Definition: session.hpp:41
session()
Create an empty session.
Definition: session.hpp:50
A channel for receiving messages.
Options for creating a receiver.
Definition: receiver_options.hpp:56
A channel for receiving messages.
Definition: receiver.hpp:40
Unsettled API - A context for thread-safe execution of work.
Definition: work_queue.hpp:339
The base Proton error.
Definition: error.hpp:40
Options for creating a session.
Definition: session_options.hpp:40
The main Proton namespace.
Definition: annotation_key.hpp:33
The base class for session, connection, and link.
Describes an endpoint error state.
Definition: error_condition.hpp:40