Package com.serotonin.m2m2.db.dao.nosql

Examples of com.serotonin.m2m2.db.dao.nosql.NoSQLDao.storeData()


        //The series name is reportInstanceId_reportPointId
       final String reportId = Integer.toString(instance.getId()) + "_";
       pointValueDao.getPointValuesBetween(pointIds, instance.getReportStartTime(), instance.getReportEndTime(), new MappedRowCallback<IdPointValueTime>(){
      @Override
      public void row(final IdPointValueTime ipvt, int rowId) {
        dao.storeData( reportId + Integer.toString(pointIdMap.get(ipvt.getDataPointId())),ipvt);
        count.increment();
      }
       });
       
        // Insert the reportInstanceUserComments records for the selected events
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.