Пример #1
0
 /**
  * Publish the description for this timeseries This is performed automatically at start of series
  * data publication, but subsequent changes to the description will not be published
  * automatically, and this method provides a means to send an update
  */
 public void publishDescription(IdentifiableTimeSeries identifiable) {
   SeriesDescriptionMessage d =
       udpMessageFactory.createTimeSeriesDescriptionMessage(
           identifiable.getPath(), identifiable.getDescription());
   seriesWithDescriptionsPublished.put(identifiable, null);
   safelyAddToQueue(d);
 }