blob: ddfc9d121aeb38338524df2fd93be76e549a3973 [file] [log] [blame]
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/csv.R, R/json.R
\name{csv_read_options}
\alias{csv_read_options}
\alias{json_read_options}
\title{Read options for the Arrow file readers}
\usage{
csv_read_options(use_threads = option_use_threads(),
block_size = 1048576L)
json_read_options(use_threads = TRUE, block_size = 1048576L)
}
\arguments{
\item{use_threads}{Whether to use the global CPU thread pool}
\item{block_size}{Block size we request from the IO layer; also determines the size of chunks when use_threads is \code{TRUE}. NB: if false, JSON input must end with an empty line}
}
\description{
Read options for the Arrow file readers
}