Package com.biglybt.core.history
Interface DownloadHistoryManager
-
- All Known Implementing Classes:
DownloadHistoryManagerImpl
public interface DownloadHistoryManager
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addListener(DownloadHistoryListener listener, boolean fire_for_existing)
long[]
getDates(byte[] hash)
int
getHistoryCount()
boolean
isEnabled()
void
removeHistory(java.util.List<DownloadHistory> history)
void
removeListener(DownloadHistoryListener listener)
void
resetHistory()
void
setEnabled(boolean enabled)
-
-
-
Method Detail
-
isEnabled
boolean isEnabled()
-
setEnabled
void setEnabled(boolean enabled)
-
getHistoryCount
int getHistoryCount()
-
removeHistory
void removeHistory(java.util.List<DownloadHistory> history)
-
resetHistory
void resetHistory()
-
getDates
long[] getDates(byte[] hash)
- Returns:
- [ added, completed, removed, redownloaded (transient)]
-
addListener
void addListener(DownloadHistoryListener listener, boolean fire_for_existing)
-
removeListener
void removeListener(DownloadHistoryListener listener)
-
-