Retrieve a single droplet.

droplet(id, ...)

as.droplet(x)

# S3 method for droplet
summary(object, ...)

Arguments

id

(integer) Droplet id.

...

Additional arguments passed down to low-level API function (do_*)

x

Object to coerce. Can be an integer (droplet id), string (droplet name), a droplet (duh), or an action (which waits until complete then returns the droplet)

object

Droplet object to pass to summary

Examples

if (FALSE) {
droplet(1234)

as.droplet("my-favourite-droplet")
as.droplet(10)
as.droplet(droplets()[[1]])

droplet(1234) %>% summary
}