reactiveExpression: Create Reactive Binding Object

Description Usage Arguments Author(s) References See Also Examples

View source: R/reactiveExpression.r

Description

Creates a reactive object binding object. This is a slightly adapted form of reactive in order to make it compatible with being called as an argument of setShinyReactive.

Usage

1
2
reactiveExpression(x, env = parent.frame(), quoted = FALSE, label = NULL,
  domain = getDefaultReactiveDomain(), caller_offset = 1)

Arguments

x

expression (quoted or unquoted).

env

environment. The parent environment for the reactive expression. By default, this is the calling environment, the same as when defining an ordinary non-reactive expression.

quoted

logical. TRUE: expression is quoted; FALSE: expression is not quoted. Default: FALSE. This is useful when you want to use an expression that is stored in a variable; to do so, it must be quoted with quote().

label

character. A label for the reactive expression, useful for debugging.

...

Further arguments to be passed to subsequent functions/methods.

Author(s)

Janko Thyson janko.thyson@rappster.de

References

http://github.com/Rappster/reactr

See Also

reactive

Examples

1
2
3
4
5
6
## Not run: 

## TODO: add example


## End(Not run)

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