Created
June 26, 2016 19:04
-
-
Save sstone/1066b4ab3c875b84c1ab6b803d6d47e4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.github.sstone.amqp.samples | |
import akka.actor.{Props, Actor, ActorSystem} | |
import com.github.sstone.amqp._ | |
import com.github.sstone.amqp.Amqp._ | |
import com.rabbitmq.client.ConnectionFactory | |
import scala.concurrent.duration._ | |
/** | |
* simple Consumer sample | |
* to run the sample: | |
* mvn exec:java -Dexec.classpathScope="test" -Dexec.mainClass=com.github.sstone.amqp.samples.Consumer1 | |
*/ | |
object Consumer1 extends App { | |
implicit val system = ActorSystem("mySystem") | |
// create an AMQP connection | |
val connFactory = new ConnectionFactory() | |
connFactory.setUri("amqp://guest:guest@localhost/%2F") | |
val conn = system.actorOf(ConnectionOwner.props(connFactory, 1 second)) | |
// create an actor that will receive AMQP deliveries | |
val listener = system.actorOf(Props(new Actor { | |
def receive = { | |
case Delivery(consumerTag, envelope, properties, body) => { | |
println("got a message: " + new String(body)) | |
sender ! Ack(envelope.getDeliveryTag) | |
} | |
} | |
})) | |
// create a consumer that will route incoming AMQP messages to our listener | |
// it starts with an empty list of queues to consume from | |
val consumer = ConnectionOwner.createChildActor(conn, Consumer.props(listener, channelParams = None, autoack = false)) | |
// wait till everyone is actually connected to the broker | |
Amqp.waitForConnection(system, consumer).await() | |
// create a queue, bind it to a routing key and consume from it | |
// here we don't wrap our requests inside a Record message, so they won't replayed when if the connection to | |
// the broker is lost: queue and binding will be gone | |
// create a queue | |
val queueParams = QueueParameters("my_queue", passive = false, durable = false, exclusive = false, autodelete = true) | |
consumer ! DeclareQueue(queueParams) | |
// bind it | |
consumer ! QueueBind(queue = "my_queue", exchange = "amq.direct", routing_key = "my_key") | |
// tell our consumer to consume from it | |
consumer ! AddQueue(QueueParameters(name = "my_queue", passive = false)) | |
// run the Producer sample now and see what happens | |
println("press enter...") | |
System.in.read() | |
system.stop(consumer) | |
println("press enter again...") | |
System.in.read() | |
system.shutdown() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment