5960616263646566
session.write(new TennisBall(10)); // Wait until the match ends. session.getCloseFuture().join(); acceptor.unbind(address); } }
6162636465666768
session.write(new TennisBall(10)); // Wait until the match ends. session.getCloseFuture().awaitUninterruptibly(); acceptor.unbind(); } }
6263646566676869
session.write( new TennisBall( 10 ) ); // Wait until the match ends. session.getCloseFuture().join(); acceptor.unbind( address ); } }
4647484950515253