(other Instance)
| 26 | } |
| 27 | |
| 28 | func (i Instance) Equal(other Instance) bool { |
| 29 | return i.Address == other.Address && i.InUse == other.InUse |
| 30 | } |
| 31 | |
| 32 | // Notifications about address resolution. All notifications are sent on the same goroutine. |
| 33 | type Notifications interface { |
no outgoing calls