# File gofer/messaging/producer.rb, line 46
  def broadcast(destinations, body={})
    sns = []
    item = Struct.new(:uuid, :sn)
    destinations.each do |dst|
      sn = self.send(dst, body)
      sns << item.new(dst.to_s, sn)
    end
    return sns
  end