Qpid Proton C++ API  0.33.0
source_options.hpp
Go to the documentation of this file.
1 #ifndef PROTON_SOURCE_OPTIONS_HPP
2 #define PROTON_SOURCE_OPTIONS_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 "./internal/pn_unique_ptr.hpp"
27 #include "./duration.hpp"
28 #include "./source.hpp"
29 
30 #include <string>
31 
34 
35 namespace proton {
36 
45  public:
47  PN_CPP_EXTERN source_options();
48 
50  PN_CPP_EXTERN source_options(const source_options&);
51 
52  PN_CPP_EXTERN ~source_options();
53 
55  PN_CPP_EXTERN source_options& operator=(const source_options&);
56 
59  PN_CPP_EXTERN source_options& address(const std::string&);
60 
64  PN_CPP_EXTERN source_options& dynamic(bool);
65 
69  PN_CPP_EXTERN source_options& anonymous(bool);
70 
74 
78 
81  PN_CPP_EXTERN source_options& timeout(duration);
82 
86 
90  PN_CPP_EXTERN source_options& filters(const source::filter_map&);
91 
93  PN_CPP_EXTERN source_options& capabilities(const std::vector<symbol>&);
94 
95  private:
96  void apply(source&) const;
97 
98  class impl;
99  internal::pn_unique_ptr<impl> impl_;
100 
102  friend class source;
103  friend class sender_options;
104  friend class receiver_options;
106 };
107 
108 } // proton
109 
110 #endif // PROTON_SOURCE_OPTIONS_HPP
source.hpp
A point of origin for messages.
proton::source
A point of origin for messages.
Definition: source.hpp:44
proton::source::durability_mode
durability_mode
The persistence mode of the source or target.
Definition: terminus.hpp:60
proton::source::expiry_policy
expiry_policy
When expiration of the source or target begins.
Definition: terminus.hpp:70
proton::source_options
Options for creating a source node for a sender or receiver.
Definition: source_options.hpp:44
proton::source_options::capabilities
source_options & capabilities(const std::vector< symbol > &)
Extension capabilities that are supported/requested.
proton::source_options::address
source_options & address(const std::string &)
Set the address for the source.
proton::source_options::source_options
source_options(const source_options &)
Copy options.
proton::receiver_options
Options for creating a receiver.
Definition: receiver_options.hpp:56
proton::source_options::dynamic
source_options & dynamic(bool)
Request that a node be dynamically created by the remote peer.
proton::map< symbol, value >
proton::duration
A span of time in milliseconds.
Definition: duration.hpp:39
proton::source_options::timeout
source_options & timeout(duration)
The expiry period after which the source is discarded.
proton::source_options::distribution_mode
source_options & distribution_mode(enum source::distribution_mode)
Control whether messages are browsed or consumed.
proton::source_options::durability_mode
source_options & durability_mode(enum source::durability_mode)
Control the persistence of the source node.
proton::sender_options
Options for creating a sender.
Definition: sender_options.hpp:57
proton::source_options::filters
source_options & filters(const source::filter_map &)
Unsettled API - Specify a filter mechanism on the source that restricts message flow to a subset of t...
proton::source_options::source_options
source_options()
Create an empty set of options.
proton::source_options::anonymous
source_options & anonymous(bool)
Request an anonymous node on the remote peer.
proton::source::distribution_mode
distribution_mode
The policy for distributing messages.
Definition: source.hpp:54
proton
The main Proton namespace.
Definition: annotation_key.hpp:33
proton::source_options::operator=
source_options & operator=(const source_options &)
Copy options.
duration.hpp
A span of time in milliseconds.
proton::source_options::expiry_policy
source_options & expiry_policy(enum source::expiry_policy)
Control when the clock for expiration begins.