module RFlow::Component::ConnectionCollection

TODO: make this into a class to limit the amount of extensions that we have to do when operating on these 'Arrays', i.e. when adding two together @!visibility private

Public Instance Methods

send_message(message) click to toggle source

@!visibility private

# File lib/rflow/component/port.rb, line 9
def send_message(message)
  each {|connection| connection.send_message(message) }
end