179180181182183184185186187188189
@Override public void close() throws IOException { super.close(); try { copier.join(timeout * 1000); } catch (InterruptedException e) { // Just wake early, the thread will terminate // anyway. } }
227228229230231232233234235236237
@Override public void close() throws IOException { super.close(); try { copier.join(getTimeout() * 1000); } catch (InterruptedException e) { // Just wake early, the thread will terminate anyway. } } };
219220221222223224225226227228229
@Override public void close() throws IOException { super.close(); try { copyThread.join(getTimeout() * 1000); } catch (InterruptedException e) { // Just wake early, the thread will terminate anyway. } } };