If I am in a get request route in ktor and I want to delegate the response to some other internal thread passing the call object... I cannot return or it will return automatically 404 before my internal thread has any chance to answer, how do I delegate? Internal thread already calls call.respond()... @e5l
pipeline.intercept(EnginePipeline.Call) checks the status and calls respond 404 preventing my internal thread to respond.