getReactive-character-missing-method: Get Reactive Object (character-missing)

Description Usage Arguments Value Author(s) References See Also Examples

Description

See generic: getReactive

Usage

1
2
3
## S4 method for signature 'character,missing'
getReactive(id, where = parent.frame(),
  hidden = FALSE, ...)

Arguments

id

character.

where

missing.

hidden

logical. TRUE: retrieve entire invisible object/instance from registry; FALSE: retrieve the visible part of the object/instance.

...

Further arguments to be passed to subsequent functions/methods.

Value

See method getReactive-character-environment-method

Author(s)

Janko Thyson janko.thyson@rappster.de

References

http://github.com/Rappster/reactr

See Also

getReactive

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
## Not run:  

setReactive(id = "x_1", value = 10)
getReactive(id = "x_1")
res <- getReactive(id = "x_1", hidden = TRUE)
res
class(res)

identical(res, getFromRegistry(id = "x_1"))


## End(Not run)

rappster/reactr documentation built on May 26, 2019, 11:56 p.m.