📄 downloadmanager.java
字号:
/*
* File : DownloadManager.java
* Created : 06-Jan-2004
* By : parg
*
* Azureus - a Java Bittorrent client
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details ( see the LICENSE file ).
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package org.gudy.azureus2.plugins.download;
import java.io.File;
import java.net.URL;
import org.gudy.azureus2.plugins.torrent.Torrent;
/**
* The DownloadManager gives access to functions used to monitor and manage Azureus's downloads
* @author parg
*/
public interface
DownloadManager
{
/**
* add a torrent from a file. This will prompt the user for download location etc. if required
* This is an async operation so no Download returned
* @param torrent_file
* @throws DownloadException
*
* @since 2.0.7.0
*/
public void
addDownload(
File torrent_file )
throws DownloadException;
/**
* add a torrent from a URL. This will prompt the user for download location etc. if required
* This is an async operation so no Download returned
* @param url
* @throws DownloadException
*
* @since 2.0.7.0
*/
public void
addDownload(
URL url )
throws DownloadException;
/**
* add a torrent from a URL. This will prompt the user for download location etc. if required
* This is an async operation so no Download returned
* @param url
* @param referer
* @throws DownloadException
*
* @since 2.1.0.6
*/
public void
addDownload(
final URL url,
final URL referer);
/**
* add a torrent from a "Torrent" object. The default torrent file and data locations will be
* used if defined - exception if they're not
* @param torrent
* @return
*
* @since 2.0.8.0
*/
public Download
addDownload(
Torrent torrent )
throws DownloadException;
/**
* add a torrent from a "Torrent" object and point it at the data location
* @param torrent
* @param torrent_location null -> use default torrent save location if defined
* @param data_location null -> user default data save location if defined
* @return
* support for null params for torrent_location/data_location since 2.1.0.4
* @since 2.0.7.0
*/
public Download
addDownload(
Torrent torrent,
File torrent_location,
File data_location )
throws DownloadException;
/**
* Add a non-persistent download. Such downloads are not persisted by Azureus and as such will
* not be remembered across an Azureus close and restart.
* @param torrent
* @param torrent_location
* @param data_location
* @return
* @throws DownloadException
*
* @since 2.0.7.0
*/
public Download
addNonPersistentDownload(
Torrent torrent,
File torrent_location,
File data_location )
throws DownloadException;
/**
* Gets the download for a particular torrent, returns null if not found
* @param torrent
* @return
*
* @since 2.0.7.0
*/
public Download
getDownload(
Torrent torrent );
/**
* Gets a download given its hash
* @param hash
* @return
* @throws DownloadException
* @since 2.3.0.7
*/
public Download
getDownload(
byte[] hash )
throws DownloadException;
/**
* Gets all the downloads. Returned in Download "index" order
* @return
*
* @since 2.0.7.0
*/
public Download[]
getDownloads();
/**
* Gets all the downloads.
* @param bSorted true - Returned in Download "index" order.<BR>
* false - Order not guaranteed. Faster retrieval.
* @return array of Download object
*
* @since 2.0.8.0
*/
public Download[]
getDownloads(boolean bSorted);
/**
* pause all running downloads
* @since 2.1.0.5
*
*/
public void
pauseDownloads();
/**
* resume previously paused downloads
* @since 2.1.0.5
*/
public void
resumeDownloads();
/**
* starts all non-running downloads
* @since 2.1.0.5
*/
public void
startAllDownloads();
/**
* stops all running downloads
* @since 2.1.0.5
*/
public void
stopAllDownloads();
/**
* Get the download manager statistics
* @return
*/
public DownloadManagerStats
getStats();
/**
* indicates whether or not all active downloads are in a seeding (or effective) seeding state
* @since 2.3.0.5
* @return
*/
public boolean
isSeedingOnly();
/**
* Add a listener that will be informed when a download is added to/removed from Azureus
* @param l
*
* @since 2.0.7.0
*/
public void
addListener(
DownloadManagerListener l );
/**
* Removes listeners added above
* @param l
*
* @since 2.0.7.0
*/
public void
removeListener(
DownloadManagerListener l );
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -