1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
//! lapin
//!
//! This project follows the AMQP 0.9.1 specifications, targeting especially RabbitMQ.
//!
//! The main access point is the [`Channel`], which contains the individual
//! AMQP methods. As to the AMQP specification, one TCP [`Connection`] can contain
//! multiple channels.
//!
//! ## Feature switches
//!
//! * `codegen`: generate code instead of using pregenerated one
//! * `native-tls` (*default*): enable amqps support through native-tls
//! * `openssl`: enable amqps support through openssl (preferred over native-tls when set)
//! * `rustls`: enable amqps support through rustls (preferred over openssl when set, uses rustls-native-certs by default)
//! * `rustls-native-certs`: same as rustls, be ensure we'll still use rustls-native-certs even if the default for rustls changes
//! * `rustls-webpki-roots-certs`: same as rustls but using webkit-roots instead of rustls-native-certs
//!
//! ## Example
//!
//! ```rust,no_run
//! use futures_lite::stream::StreamExt;
//! use lapin::{
//! options::*, publisher_confirm::Confirmation, types::FieldTable, BasicProperties, Connection,
//! ConnectionProperties, Result,
//! };
//! use tracing::info;
//!
//! fn main() -> Result<()> {
//! if std::env::var("RUST_LOG").is_err() {
//! std::env::set_var("RUST_LOG", "info");
//! }
//!
//! tracing_subscriber::fmt::init();
//!
//! let addr = std::env::var("AMQP_ADDR").unwrap_or_else(|_| "amqp://127.0.0.1:5672/%2f".into());
//!
//! async_global_executor::block_on(async {
//! let conn = Connection::connect(
//! &addr,
//! ConnectionProperties::default(),
//! )
//! .await?;
//!
//! info!("CONNECTED");
//!
//! let channel_a = conn.create_channel().await?;
//! let channel_b = conn.create_channel().await?;
//!
//! let queue = channel_a
//! .queue_declare(
//! "hello",
//! QueueDeclareOptions::default(),
//! FieldTable::default(),
//! )
//! .await?;
//!
//! info!(?queue, "Declared queue");
//!
//! let mut consumer = channel_b
//! .basic_consume(
//! "hello",
//! "my_consumer",
//! BasicConsumeOptions::default(),
//! FieldTable::default(),
//! )
//! .await?;
//! async_global_executor::spawn(async move {
//! info!("will consume");
//! while let Some(delivery) = consumer.next().await {
//! let delivery = delivery.expect("error in consumer");
//! delivery
//! .ack(BasicAckOptions::default())
//! .await
//! .expect("ack");
//! }
//! }).detach();
//!
//! let payload = b"Hello world!";
//!
//! loop {
//! let confirm = channel_a
//! .basic_publish(
//! "",
//! "hello",
//! BasicPublishOptions::default(),
//! payload,
//! BasicProperties::default(),
//! )
//! .await?
//! .await?;
//! assert_eq!(confirm, Confirmation::NotRequested);
//! }
//! })
//! }
//! ```
//! [`Channel`]: ./struct.Channel.html
//! [`Connection`]: ./struct.Connection.html
pub use ;
pub use ;
pub use ;
pub use Configuration;
pub use ;
pub use ConnectionProperties;
pub use ;
pub use ;
pub use ConsumerState;
pub use ;
pub use ExchangeKind;
pub use Queue;
type Promise<T> = PinkySwear;
type PromiseResolver<T> = Pinky;