hey, I am very interested in the routing intercept...
# ktor
k
hey, I am very interested in the routing interceptor, but I don't know when will the
ApplicationCallPipeline
working, any flow chart about it ??
a
Can you describe your problem in more detail?
k
ok, I want to know the working flow of the
ApplicationCallPipeline
😉
a
There are
Application
and
RoutingNode
classes that implement the
ApplicationCallPipeline
.
Copy code
ApplicationCallPipeline
	Setup -> Monitoring -> Plugins -> Call -> Fallback
Various plugins, including the Routing, intercept the
Plugins
phase. The following figure shows where the routing handlers are executed:
Copy code
ApplicationCallPipeline (application):
	Setup -> Monitoring -> Plugins -> Call -> Fallback
						   ↓
						   ApplicationCallPipeline (route)
						       Setup -> Monitoring -> Plugins -> Call -> Fallback
						       								     ↓
						       								     This is where the route handlers are executed
k
thank you, you are very nice 😉