Ce contenu n'est pas disponible dans la langue sélectionnée.
Chapter 4. Examples
This chapter demonstrates the use of AMQ Ruby through example programs. To run them, make sure you have completed the steps in the Chapter 2, Installation chapter for your environment and you have a running and configured broker.
4.1. Sending Messages Copier lienLien copié sur presse-papiers!
This client program connects to a server using CONNECTION_URL
, creates a sender for target ADDRESS
, sends a message containing MESSAGE_BODY
, closes the connection, and exits.
Example: Sending Messages
Running the Example
To run the example program, copy it to a local file and invoke it using the ruby
command.
ruby send.rb amqp://localhost queue1 hello
$ ruby send.rb amqp://localhost queue1 hello
4.2. Receiving Messages Copier lienLien copié sur presse-papiers!
This client program connects to a server using CONNECTION_URL
, creates a receiver for source ADDRESS
, and receives messages until it is terminated or it reaches COUNT
messages.
Example: Receiving Messages
Running the Example
To run the example program, copy it to a local file and invoke it using the ruby
command.
ruby receive.rb amqp://localhost queue1
$ ruby receive.rb amqp://localhost queue1