neptune_wait {neptune} | R Documentation |
Wait for all the tracking calls to finish.
Description
Wait for all the tracking calls to finish. In asynchronous connection mode data (default one) is synchronized with the Neptune servers in the background and each call to upload, log etc. is not immediately executed. Wait delays the code execution until all the calls are done.
Usage
neptune_wait(run, disk_only=FALSE)
Arguments
run |
Neptune run object. |
disk_only |
logical - If TRUE the process will only wait for data to be saved locally from memory, but will not wait for them to reach Neptune servers. |
Value
None
Author(s)
Authors:
Mateusz Dominiak
Maintainer: Neptune DevTeam Devbackend@neptune.ai
See Also
Useful links:
Documentation https://docs.neptune.ai/
Report bugs at https://github.com/neptune-ai/neptune-r/issues
Examples
## Not run:
# We are using api token for an anonymous user neptuner.
# For your projects use your private token.
run <- neptune_init(api_token = 'ANONYMOUS',
project = "common-r/quickstarts")
neptune_wait(run)
## End(Not run)
[Package neptune version 0.2.3 Index]