Package com.biglybt.pif.download
Interface DownloadCompletionListener
-
- All Known Implementing Classes:
DownloadEventNotifierImpl.DownloadCompletionNotifier
,TagManagerImpl
public interface DownloadCompletionListener
Listener interface to be used for plugins to be notified when downloads enter a completed state.Note: This interface is intended to be implemented by plugins.
- Since:
- 3.0.5.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onCompletion(Download d)
Called when a download enters a complete state (previously being incomplete).
-
-
-
Method Detail
-
onCompletion
void onCompletion(Download d)
Called when a download enters a complete state (previously being incomplete).- Parameters:
d
- Download which has been completed.
-
-