Learn R Programming

mcprogress (version 0.1.1)

catchError: Catch error messages during parallel processing

Description

Allows an expression to be wrapped in try() to catch error messages. Any error messages are printed to the console using mcstop().

Usage

catchError(expr, ...)

Value

Prints error messages during parallel processing. If there is no error, the result of the evaluated expression is returned.

Arguments

expr

An expression to be wrapped in try() to allow execution and catch error messages.

...

Optional objects to be tracked if you want to know state of objects at the point error messages are generated.

See Also

mcstop()