an host has been lost
| 6 | * an host has been lost |
| 7 | */ |
| 8 | public class HostLost implements Event { |
| 9 | public final InetAddress ipAddress; |
| 10 | |
| 11 | public HostLost(InetAddress ipAddress) { |
| 12 | this.ipAddress = ipAddress; |
| 13 | } |
| 14 | |
| 15 | public String toString() { |
| 16 | return String.format("HostLost: { ipAddress='%s' }", ipAddress.getHostAddress()); |
| 17 | } |
| 18 | } |
nothing calls this directly
no outgoing calls
no test coverage detected