mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-12 07:35:08 -05:00
- Multiple clients can now connect on a single port, and each one gets a unique shinyapp instance - Improve docs for reactiveXXX functions - Simplify interface for running an app
18 lines
438 B
R
18 lines
438 B
R
\name{serviceApp}
|
|
\alias{serviceApp}
|
|
\title{Run an application that was created by \code{\link{startApp}}. This
|
|
function should normally be called in a \code{while(T)} loop.}
|
|
\usage{
|
|
serviceApp(ws_env)
|
|
}
|
|
\arguments{
|
|
\item{ws_env}{The return value from
|
|
\code{\link{startApp}}.}
|
|
}
|
|
\description{
|
|
Run an application that was created by
|
|
\code{\link{startApp}}. This function should normally be
|
|
called in a \code{while(T)} loop.
|
|
}
|
|
|