Skip to content

Simple Producer/Consumer

Basic example showing message publishing and consumption.

Producer

message = GreetingMessage.new
message[:name] = 'World'
message.publish('greet')

Consumer

BunnyFarm.manage