File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -15,32 +15,32 @@ To run this code you need [Go RabbitMQ client](https://github.com/streadway/amqp
15
15
16
16
Code examples are executed via ` go run ` :
17
17
18
- [ Tutorial one: "Hello World!"] ( http://www.rabbitmq.com/tutorial-one-python .html ) :
18
+ [ Tutorial one: "Hello World!"] ( http://www.rabbitmq.com/tutorial-one-go .html ) :
19
19
20
20
go run send.go
21
21
go run receive.go
22
22
23
- [ Tutorial two: Work Queues] ( http://www.rabbitmq.com/tutorial-two-python .html ) :
23
+ [ Tutorial two: Work Queues] ( http://www.rabbitmq.com/tutorial-two-go .html ) :
24
24
25
25
go run new_task.go hello world
26
26
go run worker.go
27
27
28
- [ Tutorial three: Publish/Subscribe] ( http://www.rabbitmq.com/tutorial-three-python .html )
28
+ [ Tutorial three: Publish/Subscribe] ( http://www.rabbitmq.com/tutorial-three-go .html )
29
29
30
30
go run receive_logs.go
31
31
go run emit_log.go hello world
32
32
33
- [ Tutorial four: Routing] ( http://www.rabbitmq.com/tutorial-four-python .html )
33
+ [ Tutorial four: Routing] ( http://www.rabbitmq.com/tutorial-four-go .html )
34
34
35
35
go run receive_logs_direct.go info warn
36
36
go run emit_log_direct.go warn "a warning"
37
37
38
- [ Tutorial five: Topics] ( http://www.rabbitmq.com/tutorial-five-python .html )
38
+ [ Tutorial five: Topics] ( http://www.rabbitmq.com/tutorial-five-go .html )
39
39
40
40
go run receive_logs_topic.go "kern.*" "*.critical"
41
41
go run emit_log_topic.go kern.critical "A critical kernel error"
42
42
43
- [ Tutorial six: RPC] ( http://www.rabbitmq.com/tutorial-six-python .html )
43
+ [ Tutorial six: RPC] ( http://www.rabbitmq.com/tutorial-six-go .html )
44
44
45
45
go run rpc_server.go
46
46
go run rpc_client.go 10
You can’t perform that action at this time.
0 commit comments