IDE-hints: request and reponse placeholders for IDE hints

IDE-hintsR Documentation

request and reponse placeholders for IDE hints

Description

request and reponse placeholders for IDE hints

Usage

.req

.res

Format

An object of class Request (inherits from R6) of length 28.

An object of class Response (inherits from R6) of length 26.

See Also

Request Response

Examples

library(RestRserve)

app = Application$new()

app$add_get("/foo", FUN = function(.req, .res) {
  # since .res is a dummy instance of Response class
  # exported by RestRserve
  # IDE facilitates with autocompletion!
  .res$set_body("bar")
  # in the same time all the modifications happen with local objects
  # so you get right results in the end
})

response = app$process_request(Request$new(path = "/foo"))
response$body

RestRserve documentation built on Sept. 12, 2022, 9:06 a.m.