6768697071727374757677
public void run() { while (!isInterrupted()) { try { CompressablePacket packet = queue.take(); packet.decompress(); synchronized(decompressed) { decompressed.add(packet); } } catch (InterruptedException e) { break;