Package org.travsoup.wrappers

Examples of org.travsoup.wrappers.Session


    protected final Future<?> submit(Runnable runnable) {
        return submit(runnable, 0);
    }

    protected final Future<?> submit(Runnable runnable, long seconds) {
        Session session = controller.getSession();
        ScheduledExecutorService executor = session.getExecutor();
        return executor.schedule(runnable, seconds, TimeUnit.SECONDS);
    }
View Full Code Here

TOP

Related Classes of org.travsoup.wrappers.Session

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.