Learn R Programming

neptune (version 0.2.3)

neptune_wait: 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

See Also

Useful links:

Examples

Run this code
# NOT RUN {
  
# }
# 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)
  
# }

Run the code above in your browser using DataLab