ribesg
04/12/2019, 8:05 AMHttpRequestPipeline.Send
phase. Would my interceptor run before or after the HttpSendPipeline
? I mean, I know I can find that information from reading the source, but is there a more comprehensive documentation on how all of that works together?Dennis Schröder
04/12/2019, 8:12 AMribesg
04/12/2019, 8:16 AMDennis Schröder
04/12/2019, 8:23 AMcall pipeline phase
.ribesg
04/12/2019, 8:28 AMHttpRequestPipeline
there’s this:``` /**
* Phase for [HttpSend] feature
*/
val Send = PipelinePhase("Send")```Dennis Schröder
04/12/2019, 8:32 AMribesg
04/12/2019, 8:33 AMHttpRequestPipeline
to HttpSendPipeline
is done with the HttpSend
feature, which intercepts HttpRequestPipeline.Send
.HttpRequestPipeline.Send
, I can’t know if it will be called before or after the one from HttpSend