Method: ADCK::Connection#send_notifications

Defined in:
lib/adck/connection.rb

#send_notifications(msgs) ⇒ Object



63
64
65
66
67
68
69
# File 'lib/adck/connection.rb', line 63

def send_notifications msgs
  open do |sock,ssl|
    msgs.each do |n|
      ssl.write(n.packaged_notification)
    end
  end
end