Merge pull request #75 from Dim0N22/patch-1

Changed links to go implementation
This commit is contained in:
Michael Klishin 2015-09-22 11:08:27 -07:00
commit 93fcdccbaa

View File

@ -15,32 +15,32 @@ To run this code you need [Go RabbitMQ client](https://github.com/streadway/amqp
Code examples are executed via `go run`: Code examples are executed via `go run`:
[Tutorial one: "Hello World!"](http://www.rabbitmq.com/tutorial-one-python.html): [Tutorial one: "Hello World!"](http://www.rabbitmq.com/tutorial-one-go.html):
go run send.go go run send.go
go run receive.go go run receive.go
[Tutorial two: Work Queues](http://www.rabbitmq.com/tutorial-two-python.html): [Tutorial two: Work Queues](http://www.rabbitmq.com/tutorial-two-go.html):
go run new_task.go hello world go run new_task.go hello world
go run worker.go go run worker.go
[Tutorial three: Publish/Subscribe](http://www.rabbitmq.com/tutorial-three-python.html) [Tutorial three: Publish/Subscribe](http://www.rabbitmq.com/tutorial-three-go.html)
go run receive_logs.go go run receive_logs.go
go run emit_log.go hello world go run emit_log.go hello world
[Tutorial four: Routing](http://www.rabbitmq.com/tutorial-four-python.html) [Tutorial four: Routing](http://www.rabbitmq.com/tutorial-four-go.html)
go run receive_logs_direct.go info warn go run receive_logs_direct.go info warn
go run emit_log_direct.go warn "a warning" go run emit_log_direct.go warn "a warning"
[Tutorial five: Topics](http://www.rabbitmq.com/tutorial-five-python.html) [Tutorial five: Topics](http://www.rabbitmq.com/tutorial-five-go.html)
go run receive_logs_topic.go "kern.*" "*.critical" go run receive_logs_topic.go "kern.*" "*.critical"
go run emit_log_topic.go kern.critical "A critical kernel error" go run emit_log_topic.go kern.critical "A critical kernel error"
[Tutorial six: RPC](http://www.rabbitmq.com/tutorial-six-python.html) [Tutorial six: RPC](http://www.rabbitmq.com/tutorial-six-go.html)
go run rpc_server.go go run rpc_server.go
go run rpc_client.go 10 go run rpc_client.go 10