Package Threads

Source Code of Threads.DownloadAllThread

package Threads;

import Manager.DownloadManager;
import org.gudy.azureus2.plugins.PluginInterface;

/**
* @author Bruno
* Thread que busca legenda para todos os torrent finalizados ainda sem
* legendas, disparada pela página de Configuração
*/
public class DownloadAllThread extends BaseThread implements Runnable {

    public DownloadAllThread(PluginInterface pluginInterface) {
        super(pluginInterface);
    }

    @Override
    public void run() {
        DownloadManager manager = new DownloadManager(_pluginInterface);
        manager.getSubTitleForAllCompletedMovies(true);
    }
}
TOP

Related Classes of Threads.DownloadAllThread

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.