}
public void buildOnLastSecond() {
duration = tagBroker.getDuration();
lastTimeStamp = duration - 1000L;
MetaTag metaTag = new MetaTag();
metaTag.setEvent("onLastSecond");
metaTag.setTimestamp(lastTimeStamp);
metaTag.setMetaData(new HashMap());
if (lastTimeStamp > 0L) {
ArrayList<TagStore> nts = new ArrayList<TagStore>();
TagStore mtTagStor = new TagStore(18, metaTag.getDataSizeFromBuffer() - 15, lastTimeStamp, metaTag);
mtTagStor.setIsNew(true);
nts.add(mtTagStor);
tagBroker.addTags(nts, false, true);
}
}