ribesg
04/12/2019, 8:05 AMribesg
04/12/2019, 8:06 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 AMribesg
04/12/2019, 8:29 AMHttpRequestPipeline there’s this:``` /**
* Phase for [HttpSend] feature
*/
val Send = PipelinePhase("Send")```ribesg
04/12/2019, 8:29 AMDennis Schröder
04/12/2019, 8:32 AMribesg
04/12/2019, 8:33 AMribesg
04/12/2019, 8:34 AMHttpRequestPipeline to HttpSendPipeline is done with the HttpSend feature, which intercepts HttpRequestPipeline.Send.ribesg
04/12/2019, 8:35 AMHttpRequestPipeline.Send, I can’t know if it will be called before or after the one from HttpSendribesg
04/12/2019, 8:53 AM