Is there a way to hook/enumerate that a Body has ended? #2785
-
I'd like to do further computations upon the completion of sending/receiving a hyper Body. I'm not 100% sure what the best approach to this is after playing with available methods and some debugging. Anyone got any ideas? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
When receiving a body, if you're polling the data of it, you can just trigger a computation once it returns |
Beta Was this translation helpful? Give feedback.
When receiving a body, if you're polling the data of it, you can just trigger a computation once it returns
None
. Sending would require you to instrument animpl HttpBody
. Thetower_http::trace
body wrapper might help show you. It wraps any other body type with potential callbacks as chunks are emitted and as the body ends.