File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
03-publish-subscribe/src/bin Expand file tree Collapse file tree 4 files changed +4
-4
lines changed File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ tutorials](https://www.rabbitmq.com/getstarted.html).
5
5
6
6
The examples use [ lapin] ( https://github.com/sozu-proxy/lapin ) client library.
7
7
8
- To successfully use the examples you will need a running RabbitMQ server .
8
+ You should have a RabbitMQ server running on default port .
9
9
10
10
## Requirements
11
11
@@ -38,16 +38,16 @@ cargo run --bin new-task "hi" # specify a custom message
38
38
cd 03-publish-subscribe
39
39
```
40
40
```
41
- cargo run --bin receive
42
- cargo run --bin emit "hi" # specify a custom message
41
+ cargo run --bin subscribe
42
+ cargo run --bin publish "hi" # specify a custom message
43
43
```
44
44
45
45
#### [ Tutorial four: Routing] ( https://www.rabbitmq.com/tutorial-four-dotnet.html )
46
46
```
47
47
cd 04-routing
48
48
```
49
49
```
50
- cargo run --bin receive info error # specify log levels
50
+ cargo run --bin receive-direct info error # specify log levels
51
51
cargo run --bin emit-direct error "help!" # specify severity and custom message
52
52
```
53
53
You can’t perform that action at this time.
0 commit comments