Package com.google.code.ftspc.lector.indexers

Examples of com.google.code.ftspc.lector.indexers.Indexer


     * Main function
     * @param args Not used.
     */
    public static void main(String[] args) {
        Vars.fileSeparator = System.getProperty("file.separator");
        Indexer indexer;
        Vars.server_thread_status = true;
        try {
            Lector_Ini.class.newInstance().configure();

            FTPThread FTPThreadLocal = new FTPThread();
            FTPThreadLocal.start();

            indexer = (Indexer) (Class.forName(Vars.IndexerToUse)).newInstance();
            indexer.startIndex();

//            Timer dubl_remover_Timer = new Timer();
//            dubl_remover_Timer.schedule(new Dubl_Remover(), 0, 3600000);
            Timer InfoThreadTimer = new Timer();
            InfoThreadTimer.schedule(new InfoThread(), 0, 1000);
View Full Code Here

TOP

Related Classes of com.google.code.ftspc.lector.indexers.Indexer

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.