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
/*!
#rust-amqp
[](https://travis-ci.org/Antti/rust-amqp)
AMQ protocol implementation in pure rust.
> Note:
> The project is still in very early stages of development,
> it implements all the protocol parsing, but not all the protocol methods are wrapped/easy to use.
> Expect the API to be changed in the future.
## What it currently can do:
* Connect to server
* Open/close channels
* Declare queues/exchanges
* All the methods from the Basic class are implemented, including get, publish, ack, nack, reject, consume. So you can send/receive messages.
Have a look at the examples in examples folder.
### Connecting to the server & openning channel:
>Note: Currently it can't connect using TLS connections.
```ignore
use amqp::session::Session;
use amqp::table;
let mut session = Session::open_url("amqp://localhost/").unwrap();
let mut channel = session.open_channel(1).unwrap();
```
### Declaring queue:
```ignore
use amqp::table;
//The arguments come in following order:
//queue: &str, passive: bool, durable: bool, exclusive: bool, auto_delete: bool, nowait: bool, arguments: Table
let queue_declare = channel.queue_declare("my_queue_name", false, true, false, false, false, table::new());
```
### Publishing message:
```ignore
channel.basic_publish("", "my_queue_name", true, false,
amqp::protocol::basic::BasicProperties{ content_type: Some("text".to_string()), ..Default::default()}, (b"Hello from rust!").to_vec());
```
This will send message: "Hello from rust!" to the queue named "my_queue_name".
The messages have type of Vec<u8>, so if you want to send string, first you must convert it to Vec<u8>.
## Development notes:
The methods encoding/decoding code is generated using codegen.rb & amqp-rabbitmq-0.9.1.json spec.
To generate a new spec, run:
```sh
make
```
To build project, use cargo:
```sh
cargo build
```
To build examples:
```sh
cargo test
```
*/
// extern crate bst;
extern crate url;
extern crate byteorder;
extern crate log;
extern crate enum_primitive;