A progression condition represents a progress in an R program.
progression(
message = character(0L),
amount = 1,
step = NULL,
time = progression_time,
...,
type = "update",
class = NULL,
progressor_uuid = NULL,
progression_index = NULL,
progression_time = Sys.time(),
call = NULL,
owner_session_uuid = NULL
)
(character) A progress message.
(numeric) The total amount of progress made.
(character or integer) The step completed.
(POSIXct) A timestamp.
Type of progression made.
(character) Zero or more class names to prepend.
(character string) A character string that is unique for the current progressor and the current R session.
(integer) A non-negative integer that is incremented by one for each progression condition created.
(POSIXct or character string) A timestamp specifying when the progression condition was created.
(expression) A call expression.
(character string) A character string that is unique for the R session where the progressor was created.
Additional named elements.
A base::condition of class progression
.
To signal a progression condition, use base::signalCondition()
.
To create and signal a progression condition at once, use progress()
.