initialize

in lib/cc/analyzer/container.rb [30:45]


      def initialize(image:, name:, command: nil)
        @image = image
        @name = name
        @command = command
        @timed_out = false
        @maximum_output_exceeded = false
        @stdout_io = StringIO.new
        @stderr_io = StringIO.new
        @output_byte_count = 0
        @counter_mutex = Mutex.new

        
        @output_delimeter = "\n"
        @on_output = ->(output) { @stdout_io.puts(output) }
      end