Learn R Programming

ipc (version 0.1.4)

ShinyProducer: A Producer with methods specific for Shiny

Description

A Producer with methods specific for Shiny

A Producer with methods specific for Shiny

Arguments

Super class

ipc::Producer -> ShinyProducer

Methods

Inherited methods


Method fireInterrupt()

Sends an error with message msg.

Usage

ShinyProducer$fireInterrupt(msg = "Interrupt")

Arguments

msg

A string


Method fireNotify()

Sends a signal to create a shiny Notification with message msg.

Usage

ShinyProducer$fireNotify(msg = "Notification")

Arguments

msg

A string


Method fireAssignReactive()

Signals for assignment for reactive name to value.

Usage

ShinyProducer$fireAssignReactive(name, value)

Arguments

name

The name of the reactive value.

value

The value to assign the reactive to.


Method clone()

The objects of this class are cloneable with this method.

Usage

ShinyProducer$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Details

A Producer object with additional methods for firing interrupts, shiny notifications, and reactive value assignments.