Examples of doJob()


Examples of jobs.ProcessGisExport.doJob()

     
      GisExport gisExport = new GisExport(agencyObjects, typeEnum, "");
     
      ProcessGisExport exportJob = new ProcessGisExport(gisExport.id);
     
      exportJob.doJob();
     
      redirect(Play.configuration.getProperty("application.appBase") + "/public/data/"  + gisExport.getFilename());
            
    }
   
View Full Code Here

Examples of jobs.ProcessGisUpload.doJob()

   
    public void processFields()
    {
      ProcessGisUpload uploadJob = new ProcessGisUpload(this.id);
       
        uploadJob.doJob();  
    }
}
View Full Code Here

Examples of jobs.ProcessGtfsSnapshotExport.doJob()

        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

Examples of jobs.ProcessGtfsSnapshotMerge.doJob()

      snapshot.save();
          GtfsSnapshotMerge merge = new GtfsSnapshotMerge(snapshot);
          merge.save();
         
          ProcessGtfsSnapshotMerge mergeJob = new ProcessGtfsSnapshotMerge(merge.id);
          mergeJob.doJob();
     
      //valdiateGtfs(snapshot.id);
      }
     
    }
View Full Code Here

Examples of kg.apc.jmeter.PluginsCMDWorker.doJob()

                fileName += ".csv"; //$NON-NLS-1$
                worker.setOutputCSVFile(fileName); //$NON-NLS-1$
                worker.addExportMode(PluginsCMDWorker.EXPORT_CSV);
            }
            worker.setPluginType(pluginType);
            int status = worker.doJob();
            if (status == 0) {
                log.info("Successful generation of file " + fileName + " by plugin:" + pluginType);
            } else {
                log.error("Error generating file " + fileName + " by plugin:" + pluginType);
            }
View Full Code Here

Examples of kg.apc.jmeter.PluginsCMDWorker.doJob()

            } else {
                worker.processUnknownOption(nextArg, args);
            }
        }

        return worker.doJob();
    }
}
View Full Code Here

Examples of org.geoforge.gfrplgimportshapesgeojson4gfr.io.GfrPlgImporterDataGeojson.doJob()

        
        
      };

      this._lbl_.setText("Parsing document");
      loader.doJob();
      _saveObjects_();
     
      // ending
      this._blnDoneJob = true;
      _fireEvent();
View Full Code Here

Examples of org.geoforge.guillc.filechooser.GfrUtilFileChooserSerSave.doJob()

        // this._cmpOwner_ = wwd instanceof Component ? ((Component) wwd).getParent() : null;

        GfrUtilFileChooserSerSave fcr = new GfrUtilFileChooserSerSave(
                this._cmpOwner_ , _STR_TITLE_DIALOG_, _STR_NAME_BASE_, _STR_NAME_EXTENSION_);
       
        this._fle_ = fcr.doJob();
                //FileChooserGfr.s_chooseFile(frame, _STR_TITLE_DIALOG_, _STR_NAME_BASE_, _STR_NAME_EXTENSION_);
       
        this._wwd_.removeRenderingListener(this); // ensure not to add a duplicate
        this._wwd_.addRenderingListener(this);
    }
View Full Code Here

Examples of org.geoforge.io.reader.GfrIoRdrSheetFilteredTlosGeometryCsv.doJob()

      {
         GfrIoRdrSheetFilteredTlosGeometryCsv rdr = new GfrIoRdrSheetFilteredTlosGeometryCsv(
                 super._strPathAbsSourceOri,
                 (GfrIoSheetColIdxXlosNamGeometry) super._choicesUser);

         rdr.doJob();

         super._alt = rdr.getResultList();

         super._doJob();
      }
View Full Code Here

Examples of org.geoforge.io.reader.GfrIoRdrSheetFilteredTlosGeometryCsv.doJob()

      {
         GfrIoRdrSheetFilteredTlosGeometryCsv rdr = new GfrIoRdrSheetFilteredTlosGeometryCsv(
                 super._strPathAbsSourceOri,
                 (GfrIoSheetColIdxXlosNamGeometry) super._choicesUser);

         rdr.doJob();

         super._alt = rdr.getResultList();

         super._doJob();
      }
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.