class Anthropic::Internal::Util::ReadIOAdapter

def close

Other tags:
    Api: - private
def close
  case @stream
  in Enumerator
    Anthropic::Internal::Util.close_fused!(@stream)
  in IO if close?
    @stream.close
  else
  end
end