378379380381382383384385386387388
assertTrue("An exception should not occur here " + ex.getMessage(), false); } finally { if (publisher != null) { try { publisher.shutdown(); } catch (Throwable ex) { ex.printStackTrace(); fail("exception when shutting down the poller " + ex.getMessage()); }
359360361362363364365366367368369