Learn R Programming

SafeMapper (version 1.0.0)

.safe_execute: Core Safe Execution Engine

Description

Main entry point for all safe mapping operations. Handles automatic checkpointing and recovery without user intervention.

Usage

.safe_execute(
  data,
  func,
  session_id,
  mode,
  output_type,
  .options = NULL,
  .env_globals = NULL,
  .progress = FALSE,
  ...
)

Value

Formatted results.

Arguments

data

List of input data vectors.

func

Function to apply.

session_id

Optional character session ID (auto-generated if NULL).

mode

Character operation mode.

output_type

Character output type for formatting.

.options

furrr options (for parallel modes).

.env_globals

Environment for globals (for parallel modes).

.progress

Logical show progress (for parallel modes).

...

Additional arguments passed to func.