File tree 2 files changed +10
-4
lines changed
2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ You will also find a solution file for Visual Studio 2022.
7
7
8
8
To successfully use the examples you will need a running RabbitMQ server.
9
9
10
+ You can easily set this up by [ installing RabbitMQ] ( https://www.rabbitmq.com/docs/download ) .
11
+
10
12
## Requirements
11
13
12
14
### Requirements on Windows
Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ tutorials](https://www.rabbitmq.com/getstarted.html).
5
5
6
6
To successfully use the examples you will need a RabbitMQ node running locally.
7
7
8
+ You can easily set this up by [ installing RabbitMQ] ( https://www.rabbitmq.com/docs/download ) .
9
+
8
10
## Requirements
9
11
10
12
### Linux
@@ -36,9 +38,11 @@ To successfully use the examples you will need a RabbitMQ node running locally.
36
38
``` shell
37
39
# terminal tab 1
38
40
./gradlew -Pmain=Worker run
39
- ./gradlew -Pmain=Worker run
40
41
41
42
# terminal tab 2
43
+ ./gradlew -Pmain=Worker run
44
+
45
+ # terminal tab 3
42
46
./gradlew -Pmain=NewTask run --args " First Message"
43
47
./gradlew -Pmain=NewTask run --args " Second Message"
44
48
./gradlew -Pmain=NewTask run --args " Third Message"
@@ -69,9 +73,9 @@ To successfully use the examples you will need a RabbitMQ node running locally.
69
73
./gradlew -Pmain=ReceiveLogsDirect run --args " info warning error"
70
74
71
75
# terminal tab 3
72
- ./gradlew -Pmain=EmitLogDirect run --args ' info " Run. Run. Or it will explode" '
73
- ./gradlew -Pmain=EmitLogDirect run --args ' warning " Run. Run. Or it will explode" '
74
- ./gradlew -Pmain=EmitLogDirect run --args ' error " Run. Run. Or it will explode" '
76
+ ./gradlew -Pmain=EmitLogDirect run --args " info ' Run. Run. Or it will explode' "
77
+ ./gradlew -Pmain=EmitLogDirect run --args " warning ' Run. Run. Or it will explode' "
78
+ ./gradlew -Pmain=EmitLogDirect run --args " error ' Run. Run. Or it will explode' "
75
79
```
76
80
77
81
#### [ Tutorial five: Topics] ( https://www.rabbitmq.com/tutorials/tutorial-five-java.html )
You can’t perform that action at this time.
0 commit comments