handlers {paws.common} | R Documentation |
Set or add to handler lists
Description
Set or add to a list of request-handling functions. Request-handling functions must take a request and return a request.
Usage
handlers_set(...)
handlers_add_back(existing, ...)
handlers_add_front(existing, ...)
Arguments
... |
One or more request-handling functions to add. |
existing |
An existing request handler list. |
Examples
## Not run:
# Replace a handler list with a new handler list.
handlers$build <- handlers_set(restxml_build)
# Add a new handler onto the end of an existing handler list.
handlers$build <- handlers_add_back(handlers$build, restxml_build)
# Add a new handler at the beginning of an existing handler list.
handlers$build <- handlers_add_front(handlers$build, restxml_build)
## End(Not run)
[Package paws.common version 0.7.6 Index]