startServer
is called.HttpRequest
is sent through handleRequest
.handleRequest
converts the HttpRequest
to a RequestContext
, and converts its HttpResponse
into a ResponseContext
.angel_route
is used to match the request path to a list of request handlers.responseFinalizers
are run.res.isDetached == false
, all headers, the status code and the response buffer are sent through the actual HttpResponse
.HttpResponse
is closed.