class ProcessExecuter::Destinations::IO

def write(data)

Raises:
  • (IOError) - if the IO object is closed

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

Parameters:
  • data (String) -- the data to write
def write(data)
  super
  destination.write data
end