Examples of ProcessGtfsSnapshotExport


Examples of jobs.ProcessGtfsSnapshotExport

        Date calendarFromDate = new Date(calendarFrom);
        Date calendarToDate = new Date(calendarTo);
       
        GtfsSnapshotExport snapshotExport = new GtfsSnapshotExport(agencyObjects, calendarEnum, calendarFromDate, calendarToDate, "");
       
        ProcessGtfsSnapshotExport exportJob = new ProcessGtfsSnapshotExport(snapshotExport.id);
       
        // running as a sync task for now -- needs to be async for processing larger feeds.
        exportJob.doJob();
       
        redirect(Play.configuration.getProperty("application.appBase") + "/public/data/"  + snapshotExport.getZipFilename());
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.