get_artifacts {maestro} | R Documentation |
Get the artifacts (return values) of the pipelines in a MaestroSchedule object.
Description
Artifacts are return values from pipelines. They are accessible as a named list where the names correspond to the names of the pipeline.
Usage
get_artifacts(schedule)
Arguments
schedule |
object of type MaestroSchedule created using |
Value
named list
Examples
if (interactive()) {
pipeline_dir <- tempdir()
create_pipeline("my_new_pipeline", pipeline_dir, open = FALSE)
schedule <- build_schedule(pipeline_dir = pipeline_dir)
schedule <- run_schedule(
schedule,
orch_frequency = "1 day",
quiet = TRUE
)
get_artifacts(schedule)
# Alternatively, use the underlying R6 method
schedule$get_artifacts()
}
[Package maestro version 0.5.0 Index]