(int maxLength, CountDownLatch latch)
| 20 | private MessageDigest digest; |
| 21 | |
| 22 | public Handler(int maxLength, CountDownLatch latch) throws Exception { |
| 23 | this.id = created++; |
| 24 | this.maxLength = maxLength; |
| 25 | this.latch = latch; |
| 26 | this.digest = MessageDigest.getInstance("MD5"); |
| 27 | System.out.println("Handler tid=" + Thread.currentThread().getId() + " " + id); |
| 28 | } |
| 29 | |
| 30 | @Override |
| 31 | public void channelConnected(ChannelHandlerContext ctx, ChannelStateEvent e) |
nothing calls this directly
no outgoing calls
no test coverage detected