shiny (version 1.0.5)

reactiveValuesToList: Convert a reactivevalues object to a list

Description

This function does something similar to what you might as.list to do. The difference is that the calling context will take dependencies on every object in the reactivevalues object. To avoid taking dependencies on all the objects, you can wrap the call with isolate().

Usage

reactiveValuesToList(x, all.names = FALSE)

Arguments

x

A reactivevalues object.

all.names

If TRUE, include objects with a leading dot. If FALSE (the default) don't include those objects.

Examples

Run this code
# NOT RUN {
values <- reactiveValues(a = 1)
# }
# NOT RUN {
reactiveValuesToList(values)
# }
# NOT RUN {
# To get the objects without taking dependencies on them, use isolate().
# isolate() can also be used when calling from outside a reactive context (e.g.
# at the console)
isolate(reactiveValuesToList(values))
# }

Run the code above in your browser using DataCamp Workspace