mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-05 12:15:14 -05:00
It is dangerous to set this on a per-process basis. If we even still want the ability to have observer errors not kill the session (debatable) we should do so by having an option on the session object that is set when the shiny server function runs. Not only does this remove support for the option, but now we will refuse to connect and will abort the session if the option is set to a non-NULL value. This is to prevent apps from moving forward with the assumption that their option will work, when it really won't. (I doubt anyone is using it anyway, it's so obscure...)
18 lines
426 B
R
18 lines
426 B
R
% Generated by roxygen2 (4.1.1): do not edit by hand
|
|
% Please edit documentation in R/server.R
|
|
\name{stopApp}
|
|
\alias{stopApp}
|
|
\title{Stop the currently running Shiny app}
|
|
\usage{
|
|
stopApp(returnValue = invisible())
|
|
}
|
|
\arguments{
|
|
\item{returnValue}{The value that should be returned from
|
|
\code{\link{runApp}}.}
|
|
}
|
|
\description{
|
|
Stops the currently running Shiny app, returning control to the caller of
|
|
\code{\link{runApp}}.
|
|
}
|
|
|