132133134135136137138139140141142143
getDownloadManager().updateDownload(this); } public void interrupt() { GenericPeerConnection connection = getConnection(); if (connection != null) { connection.terminate(); } interrupted = true; }
31323334353637
} public GenericPeerConnection createConnection(AbstractCommunicationSet source) throws IOException { return new GenericPeerConnection(source); }