Package com.biglybt.pif.download
Interface DownloadTrackerListener
-
- All Known Implementing Classes:
DHTTrackerPlugin
,DownloadEventNotifierImpl.DownloadTrackerNotifier
,RunEverythingPlugin
,StartStopRulesDefaultPlugin.StartStopDMTrackerListener
public interface DownloadTrackerListener
A listener that will be informed when the latest announce/scrape results change. Seecom.biglybt.pif.download#addTrackerListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
announceResult(DownloadAnnounceResult result)
An announce result has been returned from the trackervoid
scrapeResult(DownloadScrapeResult result)
A scrape result has been returned from a tracker
-
-
-
Method Detail
-
scrapeResult
void scrapeResult(DownloadScrapeResult result)
A scrape result has been returned from a tracker- Parameters:
result
- Information about the scrape- Since:
- 2.0.7.0
-
announceResult
void announceResult(DownloadAnnounceResult result)
An announce result has been returned from the tracker- Parameters:
result
- Information about the announce- Since:
- 2.0.7.0
-
-