Qpid Proton C++ 0.40.0
 
Loading...
Searching...
No Matches
fwd.hpp
Go to the documentation of this file.
1#ifndef PROTON_FWD_HPP
2#define PROTON_FWD_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
27
28
29namespace proton {
30
31class annotation_key;
32class connection;
34class container;
35class delivery;
36class duration;
37class error_condition;
38class event;
39class message;
40class message_id;
42class listen_handler;
43class listener;
44class receiver;
45class receiver_iterator;
48class sasl;
49class sender;
50class sender_iterator;
51class sender_options;
52class session;
53class session_options;
54class source_options;
55class ssl;
56class target_options;
57class tracker;
58class transport;
59class url;
60class void_function0;
61class work_queue;
62
63namespace internal { namespace v03 { class work; } }
64namespace internal { namespace v11 { class work; } }
65using internal::v11::work;
66
67namespace io {
68
70
71}
72
73template <class T> class returned;
74}
75
76#endif // PROTON_FWD_HPP
A key for use with AMQP annotation maps.
Definition annotation_key.hpp:38
Options for creating a connection.
Definition connection_options.hpp:67
A connection to a remote AMQP peer.
Definition connection.hpp:47
A top-level container of connections, sessions, and links.
Definition container.hpp:50
A received message.
Definition delivery.hpp:40
A span of time in milliseconds.
Definition duration.hpp:39
Describes an endpoint error state.
Definition error_condition.hpp:39
Unsettled API - An AMQP driver for a single connection.
Definition connection_driver.hpp:93
Unsettled API - A handler for incoming connections.
Definition listen_handler.hpp:39
A listener for incoming connections.
Definition listener.hpp:33
An AMQP message ID.
Definition message_id.hpp:47
An AMQP message.
Definition message.hpp:48
Handler for Proton messaging events.
Definition messaging_handler.hpp:69
Options for creating a receiver.
Definition receiver_options.hpp:59
A channel for receiving messages.
Definition receiver.hpp:41
Options for reconnect and failover after connection loss.
Definition reconnect_options.hpp:48
A return type for container methods.
Definition returned.hpp:51
SASL information.
Definition sasl.hpp:38
Options for creating a sender.
Definition sender_options.hpp:60
A channel for sending messages.
Definition sender.hpp:40
Options for creating a session.
Definition session_options.hpp:41
A container of senders and receivers.
Definition session.hpp:42
Options for creating a source node for a sender or receiver.
Definition source_options.hpp:46
SSL information.
Definition ssl.hpp:37
Options for creating a target node for a sender or receiver.
Definition target_options.hpp:46
A tracker for a sent message.
Definition tracker.hpp:41
A network channel supporting an AMQP connection.
Definition transport.hpp:37
Deprecated - Use a third-party URL library.
Definition url.hpp:66
Unsettled API - A context for thread-safe execution of work.
Definition work_queue.hpp:327
Unsettled API - Interfaces for IO integration.
Definition fwd.hpp:67
The main Proton namespace.
Definition annotation_key.hpp:33