% Generated by roxygen2: do not edit by hand % Please edit documentation in R/server-input-handlers.R \name{applyInputHandlers} \alias{applyInputHandlers} \title{Apply input handlers to raw input values} \usage{ applyInputHandlers(inputs, shinysession = getDefaultReactiveDomain()) } \arguments{ \item{inputs}{A named list of input values.} \item{shinysession}{A Shiny session object.} } \description{ The purpose of this function is to make it possible for external packages to test Shiny inputs. It takes a named list of raw input values, applies input handlers to those values, and then returns a named list of the processed values. } \details{ The raw input values should be in a named list. Some values may have names like \code{"x:shiny.date"}. This function would apply the \code{"shiny.date"} input handler to the value, and then rename the result to \code{"x"}, in the output. } \seealso{ registerInputHandler } \keyword{internal}