droplet {analogsea}R Documentation

Retrieve a single droplet.

Description

Retrieve a single droplet.

Usage

droplet(id, ...)

as.droplet(x)

## S3 method for class '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

## Not run: 
droplet(1234)

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

droplet(1234) %>% summary

## End(Not run)

[Package analogsea version 1.0.7.2 Index]