Alex Hu

Results 5 comments of Alex Hu

@janitha09 Have you resolved this issue yet? I don't see the test framework being pulished, do we have to pull this repo locally and build with our implementation together?

> Use `dispatch_http_call()` and `on_http_call_response`. > > Try `self.get_http_request_body(0, _body_size)` I see the contract in the base context trait, e.g.: ``` fn on_http_call_response(&mut self, _token_id: u32, _num_headers: usize, _body_size: usize,...

@antonengelhardt yes! this is the one I am talking about. However, is there another way to handle this outside of the context? Reason being we have several outbound calls rely...

We do make several calls for each request, and rely on the result then determine whether continue with the upstream or terminate send response back to the downstream

I have something with registering a callback map HashMap, and the `HttpCallHandler` defines the contract on how to further process the response from the http_call individually ``` pub struct CustomHttpContext...