Package cx.fbn.nevernote.threads

Examples of cx.fbn.nevernote.threads.ThumbnailRunner


    syncThread.start();
   
   
    logger.log(logger.EXTREME, "Starting thumnail thread");
    pdfReadyQueue = new ArrayList<String>();
    thumbnailRunner = new ThumbnailRunner("thumbnailRunner.log",
        Global.getDatabaseUrl(), Global.getIndexDatabaseUrl(), Global.getResourceDatabaseUrl(),
        Global.getDatabaseUserid(), Global.getDatabaseUserPassword(), Global.cipherPassword);
    thumbnailThread = new QThread(thumbnailRunner, "Thumbnail Thread");
    thumbnailRunner.noteSignal.thumbnailPageReady.connect(this, "thumbnailHTMLReady(String,QByteArray,Integer)");
    thumbnailThread.start();
View Full Code Here

TOP

Related Classes of cx.fbn.nevernote.threads.ThumbnailRunner

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.