Package org.corrib.treemaps.caching

Examples of org.corrib.treemaps.caching.CachingDirectoriesService


        MappableTag[] amap = localtags
            .toArray(new MappableTag[localtags.size()]);

        // System.out.println("created tags: "+amap.length);

        CachingDirectoriesService cds = new CachingDirectoriesService(
            this.bookmarking, TreeMappableTag.get(amap));

        // System.out.println("Adding dirs - starting");
        FutureTask<?> taskDir = cds.submitTask();
        // wait for completition
        taskDir.get();

        // just in case - in order to not get banned
        Thread.sleep(2000);
View Full Code Here


       
        MappableTag[] amap = localtags.toArray(new MappableTag[localtags.size()]);
       
        //System.out.println("created tags: "+amap.length);
       
        CachingDirectoriesService cds = new CachingDirectoriesService(this.bookmarking, TreeMappableTag.get(amap),false);
       
        //System.out.println("Adding dirs - starting");
        FutureTask<?> taskDir = cds.submitTask();
        //wait for completition
        taskDir.get();
       
        //just in case - in order to not get banned
        Thread.sleep(2000);
View Full Code Here

TOP

Related Classes of org.corrib.treemaps.caching.CachingDirectoriesService

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.