Examples of storeData()


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

Examples of edu.brown.hstore.txns.AbstractTransaction.storeData()

                                        partition, vt.getRowCount(),StringUtil.md5sum(bytes), bytes.length));
            }
               
            if (debug.val)
                LOG.debug(String.format("<StoreTable from Partition %d to Partition:%d>\n %s",hstore_site.getSiteId() ,partition,vt));
            Hstoreservice.Status status = ts.storeData(partition, vt);
            if (status != Hstoreservice.Status.OK) builder.setStatus(status);
            builder.addPartitions(partition);
        } // FOR
       
        callback.run(builder.build());
View Full Code Here

Examples of rocks.xmpp.extensions.privatedata.PrivateDataManager.storeData()

                                public void handle(ActionEvent actionEvent) {
                                    PrivateDataManager privateDataManager = xmppSession.getExtensionManager(PrivateDataManager.class);
                                    try {
                                        List<Annotation.Note> notes = new ArrayList<>();
                                        notes.add(new Annotation.Note("Hallo", item.contact.get().getJid()));
                                        privateDataManager.storeData(new Annotation(notes));
                                    } catch (XmppException e) {
                                        e.printStackTrace();
                                    }

                                }
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.