We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
request-options
outgoing-handler
borrow
In 0.2, outgoing-handler gets passed an option<request-options>:
option<request-options>
@since(version = 0.2.0) handle: func( request: outgoing-request, options: option<request-options> ) -> result<future-incoming-response, error-code>;
It would be nice if this was instead an option<borrow<request-options>> so that the same options could be reused across many requests.
option<borrow<request-options>>
We can't change this in 0.2 because it would be a breaking change, but we should take the opportunity to fix it in 0.3.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In 0.2,
outgoing-handler
gets passed anoption<request-options>
:It would be nice if this was instead an
option<borrow<request-options>>
so that the same options could be reused across many requests.We can't change this in 0.2 because it would be a breaking change, but we should take the opportunity to fix it in 0.3.
The text was updated successfully, but these errors were encountered: