jameshartig commented on PR #1770:
URL:
https://github.com/apache/cassandra-gocql-driver/pull/1770#issuecomment-2614111024
I'd really love if Go supported this:
```go
type hostPoolResponse interface {
Host() string
Mark(error)
}
type setHostsGetHost interface {
SetHosts([]string)
Get() hostPoolResponse
}
func HostPoolHostPolicy(hp setHostsGetHost) HostSelectionPolicy {
return &hostPoolHostPolicy{hostMap: map[string]*HostInfo{}, hp: hp}
}
```
Then we could get rid of the import but not break anything. Unfortunately,
the above won't work because function signatures must match exactly.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]