Load an existing saved bundle by name. This is intended for where you have created a long-running bundle and since closed down your session. See hipercow_bundle_list for finding names of bundles.
Examples
cleanup <- hipercow_example_helper()
#> ℹ This example uses a special helper
bundle <- task_create_bulk_expr(sqrt(x), data.frame(x = 1:5))
#> ✔ Submitted 5 tasks using 'example'
#> ✔ Created bundle 'horrifying_icterinewarbler' with 5 tasks
name <- bundle$name
# Delete the bundle object; the bundle exists still in hipercow's store.
rm(bundle)
# With the name we can load the bundle and fetch its status
bundle <- hipercow_bundle_load(name)
hipercow_bundle_status(bundle)
#> [1] "submitted" "submitted" "submitted" "submitted" "submitted"
# In fact, you can use just the name if you prefer:
hipercow_bundle_status(name)
#> [1] "submitted" "submitted" "submitted" "submitted" "submitted"
cleanup()
#> ℹ Cleaning up example