# File lib/celluloid/io/stream.rb, line 19
      def initialize(socket)
        super
        @eof  = false
        @sync = true
        @read_buffer = ''.force_encoding(Encoding::ASCII_8BIT)
        @write_buffer = ''.force_encoding(Encoding::ASCII_8BIT)

        @read_latch  = Latch.new
        @write_latch = Latch.new
      end