-
Bug
-
Resolution: Done
-
Major
-
None
-
None
THis is for 3.2.0 which does not appear in the version list
Adding the following to org.jboss.remoting3.test.ChannelTestBase.java, the close handler does not get called. We discussed on IRC a few days ago but no matter what I do to close the channel this does not get called. Please provide a working example
@Test public void testRemoteChannelClose() throws Exception { final CountDownLatch closedLatch = new CountDownLatch(1); sendChannel.addCloseHandler(new CloseHandler<Channel>() { @Override public void handleClose(Channel closed) { closedLatch.countDown(); } }); recvChannel.writeShutdown(); IoUtils.safeClose(recvChannel); System.out.println("Waiting for closed"); closedLatch.await(); System.out.println("Closed"); }
- blocks
-
AS7-361 Test server respawn logic
- Resolved
-
AS7-336 Detect crashed DC slave in protocol to avoid errors when restarting crashed slave
- Closed
-
AS7-1094 Get rid of the ping hack used my DomainModelControllerService to detect crashed slaves
- Closed
- clones
-
REM3-124 CloseHandlers are not called when the remote connection closes
- Closed