slStop: Stops a ShinyLight GUI

View source: R/shinylight.R

slStopR Documentation

Stops a ShinyLight GUI

Description

Stops a ShinyLight GUI

Usage

slStop(server = NULL)

Arguments

server

The server (returned by slServer or slRunRServer) to stop. If not supplied all servers will be stopped.

Value

No return value

Examples

server <- slServer(
  port = 50051,  # leave this out if you don't care about the port number
  interface = list(
    multiply = function(x, y) { x * y }
  )
)
# ...
slStop(server)

shinylight documentation built on May 29, 2024, 12:04 p.m.