# Functions
Registers a new route with the router, which will invoke the provided factory to create and execute the context for the route when it's called via GET; use this for typical general-purpose calls.
Registers a new route with the router, which will invoke the provided factory to create and execute the context for the route when it's called via POST; use this for typical general-purpose calls.
Registers a new route with the router, which will invoke the provided factory to create and execute the context for the route when it's called via POST; use this for typical general-purpose calls.
Registers a new route with the router, which will invoke the provided factory to create and execute the context for the route when it's called; use this for typical general-purpose calls.
# Interfaces
Wrapper for callbacks used by call runners that simply run without following a structured pattern of querying the chain.
Interface for queryless call context factories that handle GET calls.
Interface for queryless call context factories that handle POST requests.
Wrapper for callbacks used by call runners that follow a common single-stage pattern: Create bindings, query the chain, and then do whatever else they want.
Interface for single-stage call context factories - these will be invoked during route handling to create the unique context for the route.
Interface for queryless call context factories that handle POST requests.