is there an application call pipeline stage that g...
# ktor
r
is there an application call pipeline stage that gets executed at the end of a call?
Based on those, there doesn’t appear to be, but you could probably make use of the send pipeline phases https://github.com/ktorio/ktor/blob/master/ktor-server/ktor-server-core/jvm/src/io/ktor/response/ApplicationSendPipeline.kt#L20-L50
z
it looks like you can insert your own pipeline phase as well