Skip to content

Instantly share code, notes, and snippets.

View thecodesmith's full-sized avatar

Brian Stewart thecodesmith

  • Jamf
  • United States
View GitHub Profile
@thecodesmith
thecodesmith / RabbitMqConsumer.groovy
Last active August 29, 2015 14:05
Basic RabbitMQ Publisher/Consumer Example
@Grab(group='com.rabbitmq', module='amqp-client', version='3.3.4')
import com.rabbitmq.client.*
connectionParams = [
username: 'guest',
password: 'guest',
virtualHost: '/',
requestedHeartbeat: 0
]