(String host, int port)
| 61 | private final DatagramChannel _channel; |
| 62 | |
| 63 | public StatsdClient(String host, int port) throws UnknownHostException, IOException { |
| 64 | this(InetAddress.getByName(host), port); |
| 65 | } |
| 66 | |
| 67 | public StatsdClient(InetAddress host, int port) throws IOException { |
| 68 | _address = new InetSocketAddress(host, port); |
nothing calls this directly
no test coverage detected