Closed cdjackson closed 7 years ago
It seems that the library often (nearly always?) hangs on closing at the following point -:
/** * Requests parser thread to shutdown. */ public void close() { this.close = true; try { parserThread.interrupt(); parserThread.join(); } catch (InterruptedException e) { logger.warn("Interrupted in packet parser thread shutdown join."); } }
Presumably the parserThread doesn't quit and it locks at the join.
join
This is duplicate to #91
It seems that the library often (nearly always?) hangs on closing at the following point -:
Presumably the parserThread doesn't quit and it locks at the
join
.