-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
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
broker trait #160
Comments
Low priority. Can't see good solutions currently, the network stack being so "local". |
Given that |
Sounds good. Since lookups are already fallible they can just be perma-fallible when there is no DNS support. |
could this be simplified to an
enum Broker { Ip, Named }
instead of having the trait and type param propagation through the stack?The two issues are:
Dns
trait: where the stack may or may not provide the trait. maybe that could be made fallible/late fallible. Or we could always requireDns
.The text was updated successfully, but these errors were encountered: