Qpid Proton C++  0.13.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
sender.hpp
1 #ifndef PROTON_SENDER_HPP
2 #define PROTON_SENDER_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 "./internal/export.hpp"
26 #include "./link.hpp"
27 #include "./message.hpp"
28 #include "./tracker.hpp"
29 
30 #include <proton/types.h>
31 
32 #include <string>
33 
34 struct pn_connection_t;
35 
36 namespace proton {
37 template <class T> class thread_safe;
38 
40 class
41 PN_CPP_CLASS_EXTERN sender : public link {
43  PN_CPP_EXTERN sender(pn_link_t* s);
45 
46  public:
48  sender() {}
49 
53  PN_CPP_EXTERN void open();
54 
56  PN_CPP_EXTERN void open(const sender_options &opts);
57 
59  PN_CPP_EXTERN tracker send(const message &m);
60 
62  PN_CPP_EXTERN class source source() const;
63 
65  PN_CPP_EXTERN class target target() const;
66 
73  PN_CPP_EXTERN void return_credit();
74 
76  friend class internal::factory<sender>;
77  friend class sender_iterator;
78  friend class thread_safe<sender>;
80 };
81 
83 
85 class sender_iterator : public internal::iter_base<sender, sender_iterator> {
86  sender_iterator(sender snd, pn_session_t* s = 0) :
87  internal::iter_base<sender, sender_iterator>(snd), session_(s) {}
88 
89  public:
91  sender_iterator() :
92  internal::iter_base<sender, sender_iterator>(0), session_(0) {}
94  PN_CPP_EXTERN sender_iterator operator++();
95 
96  private:
97  pn_session_t* session_;
98 
99  friend class connection;
100  friend class session;
101 };
102 
104 typedef internal::iter_range<sender_iterator> sender_range;
105 
107 
108 }
109 
110 #endif // PROTON_SENDER_HPP
An AMQP message.
Definition: message.hpp:51
A channel for sending messages.
Definition: sender.hpp:40
sender()
Create an empty sender.
Definition: sender.hpp:48
Options for creating a sender.
Definition: sender_options.hpp:64
A point of origin for messages.
Definition: source.hpp:43
A tracker for a sent message.
Definition: tracker.hpp:37
A destination for messages.
Definition: target.hpp:40
Experimental - A thread-safe object wrapper.
Definition: connection.hpp:45