mirror of
https://github.com/hickory-dns/hickory-dns.git
synced 2026-04-25 03:05:51 +03:00
[GH-ISSUE #1532] [Client] Doc improvement for async usage #692
Labels
No labels
blocked
breaking-change
bug
bug:critical
bug:tests
cleanup
compliance
compliance
compliance
crate:all
crate:client
crate:native-tls
crate:proto
crate:recursor
crate:resolver
crate:resolver
crate:rustls
crate:server
crate:util
dependencies
docs
duplicate
easy
easy
enhance
enhance
enhance
feature:dns-over-https
feature:dns-over-quic
feature:dns-over-tls
feature:dnsssec
feature:global_lb
feature:mdns
feature:tsig
features:edns
has workaround
ops
perf
platform:WASM
platform:android
platform:fuchsia
platform:linux
platform:macos
platform:windows
pull-request
question
test
tools
tools
trust
unclear
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/hickory-dns#692
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ErwanDL on GitHub (Aug 6, 2021).
Original GitHub issue: https://github.com/hickory-dns/hickory-dns/issues/1532
Hello, and thanks for the work on this project.
I think the documentation for the client is somewhat lacking in examples, notably concerning usage of the
AsyncClient. The only example I found in the docs is this one, that only tackles the UDP case, and does not useasync/awaitsyntax although I believe most users opt for theAsyncClientspecifically because they want to useasync/await.Here is an adapated version of this example, using a TCP connection and
async/awaitsyntax (I am not 100% sure of the TCP client construction process, I tried to take inspiration from what I saw in the integration tests):Do you think it would be a good idea to add this example to the docs (I can submit a PR for this) ?
On another note, I am quite confused by the
AsyncClientvsAsyncClientConnectdistinction. Are there reasons not to defineAsyncClient::newandAsyncClient::connectasasync fnthat return anAsyncClientonce they have beenawaited ? This could remove the need for this intermediaryAsyncConnectobject.@bluejekyll commented on GitHub (Aug 8, 2021):
Thank you for putting this together! Would you like to add this to the client root documentation?
I think those functions can be simplified. The only reason I can think that didn't happen is because AsyncClient is older than async/await in Rust. Most likely it can be simplified to be
async fninstead of Future implementations. If that's something you'd be interested in working on, it would be appreciated...