1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/handler_newline.R
\name{handler_newline}
\alias{handler_newline}
\title{Progression Handler: Progress Reported as a New Line (Text) in the Terminal}
\usage{
handler_newline(
symbol = "\\n",
file = stderr(),
intrusiveness = getOption("progressr.intrusiveness.debug", 0),
target = "terminal",
...
)
}
\arguments{
\item{symbol}{(character string) The character symbol to be outputted,
which by default is the ASCII NL character (\code{'\\n'} = \code{'\\013'}) character.}
\item{file}{(connection) A \link[base:connections]{base::connection} to where output should be sent.}
\item{intrusiveness}{(numeric) A non-negative scalar on how intrusive
(disruptive) the reporter to the user.}
\item{target}{(character vector) Specifies where progression updates are
rendered.}
\item{\ldots}{Additional arguments passed to \code{\link[=make_progression_handler]{make_progression_handler()}}.}
}
\description{
Progression Handler: Progress Reported as a New Line (Text) in the Terminal
}
\keyword{internal}
|