class ProcessExecuter::Destinations::Tee

def write(data)

Raises:
  • (IOError) - if the file is closed

Returns:
  • (Integer) - the number of bytes written

Parameters:
  • data (String) -- the data to write
def write(data)
  super
  child_destinations.each { |dest| dest.write(data) }
end