class SupplyDrop::Writer::Streaming

Public Class Methods

new(logger) click to toggle source
# File lib/supply_drop/writer/streaming.rb, line 4
def initialize(logger)
  @logger = logger
end

Public Instance Methods

all_output_collected() click to toggle source
# File lib/supply_drop/writer/streaming.rb, line 12
def all_output_collected
end
collect_output(host, data) click to toggle source
# File lib/supply_drop/writer/streaming.rb, line 8
def collect_output(host, data)
  @logger.debug data, host
end