Package omschaub.azcvsupdater.utilities.download

Examples of omschaub.azcvsupdater.utilities.download.SeedCVS


   
    public static void seedLatest(){
        try{
            if (Tab1_Subtab_1.version.equals("Checking...."))
                return;
            SeedCVS seedCVS = new SeedCVS();
            seedCVS.setURL(URLReader.get_cvsurl());
            seedCVS.setDir(DirectoryUtils.getBackupDirectory() + System.getProperty("file.separator"));
            seedCVS.initialize("torrent");
            seedCVS.start();
        }catch(Exception e){
            StatusBoxUtils.mainStatusAdd(" Error downloading torrent for auto seed, please use 'Manual Update' to try again later", 2);
            e.printStackTrace();
        }
    }
View Full Code Here

TOP

Related Classes of omschaub.azcvsupdater.utilities.download.SeedCVS

Copyright © 2018 www.massapicom. 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.