call-responder ( path responder -- response ) (original) (raw)

call-responder ( path responder -- response )
Furnace framework » HTTP server » HTTP server responders

Prev: main-responder
Next: trivial-responder

Vocabulary
http.server

Inputs

path a sequence of strings
responder a responder

Outputs

response a response

Word description
Calls a responder.

Definition

USING: kernel ;

IN: http.server

: call-responder ( path responder -- response )
[ add-responder-nesting ] [ call-responder* ] 2bi ;