Package pdfrobot.engine.robot

Examples of pdfrobot.engine.robot.PdfRobotScheduledJob


        return new SerializedFileRules().saveRule(rule);
    }

    public void startTimer(long intervalInSeconds) {
        executionTimer = new Timer("pdfRobotTimer");
        executionTimer.schedule(new PdfRobotScheduledJob(), 0, intervalInSeconds * 1000);
    }
View Full Code Here

TOP

Related Classes of pdfrobot.engine.robot.PdfRobotScheduledJob

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.