Package org.onebusaway.realtime.api

Examples of org.onebusaway.realtime.api.TimepointPredictionRecord


    r.setTimeOfRecord(System.currentTimeMillis());
    r.setTimeOfLocationUpdate(r.getTimeOfRecord());
    r.setScheduleDeviation(best.getScheduleDeviation());

    if (_includeTimepointPredictionRecords) {
      TimepointPredictionRecord tpr = new TimepointPredictionRecord();
      tpr.setTimepointId(best.getTimepointId());
      tpr.setTimepointPredictedTime(best.getTimepointPredictedTime());
      tpr.setTimepointScheduledTime(best.getTimepointScheduledTime());
      r.setTimepointPredictions(Arrays.asList(tpr));
    }

    r.setTripId(best.getTripId());
    r.setVehicleId(best.getVehicleId());
View Full Code Here

TOP

Related Classes of org.onebusaway.realtime.api.TimepointPredictionRecord

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.