thread.start();
for (int i = 0; i < 10; i++)
{
logger.trace("=========================");
dsess.disrupt();
// now wait until more messages come through
final long curCount = mp.handleCalls.get();
assertTrue(poll(baseTimeoutMillis,mp, new Condition<TestMp>() { @Override public boolean conditionMet(TestMp mp) { return mp.handleCalls.get() > curCount; } }));
}