adhoc_stratum()
will execute only the stratum, its child
laminae and the code therein contained as specified by stratum_path
with or without log messages.
See also
Other adhoc:
adhoc()
,
adhoc_lamina()
Examples
tmp <- fs::dir_create(fs::file_temp())
result <- strata::build_quick_strata_project(tmp, 1, 1)
adhoc_stratum(
fs::path(tmp, "strata", "stratum_1"),
)
#> [2025-02-03 21:45:55.8378] INFO: Strata started
#> [2025-02-03 21:45:55.8526] INFO: Stratum: stratum_1 initialized
#> [2025-02-03 21:45:55.8531] INFO: Lamina: s1_lamina_1 initialized
#> [2025-02-03 21:45:55.8537] INFO: Executing: my_code
#> [1] "I am a placeholder, do not forget to replace me!"
#> [2025-02-03 21:45:55.8545] INFO: Strata finished - duration: 0.0169 seconds
fs::dir_delete(tmp)