Class AnnotationHistoricalData
- java.lang.Object
- 
- java.util.AbstractCollection<E>
- 
- java.util.AbstractList<E>
- 
- java.util.ArrayList<Annotation>
- 
- com.inductiveautomation.ignition.gateway.history.AnnotationHistoricalData
 
 
 
 
- 
- All Implemented Interfaces:
- HistoricalData,- java.io.Serializable,- java.lang.Cloneable,- java.lang.Iterable<Annotation>,- java.util.Collection<Annotation>,- java.util.List<Annotation>,- java.util.RandomAccess
 
 public class AnnotationHistoricalData extends java.util.ArrayList<Annotation> implements HistoricalData - See Also:
- Serialized Form
 
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classAnnotationHistoricalData.AnnotationHistoryFlavor
 - 
Field SummaryFields Modifier and Type Field Description static HistoryFlavorFLAVOR
 - 
Constructor SummaryConstructors Constructor Description AnnotationHistoricalData()AnnotationHistoricalData(java.util.List<Annotation> data)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetDataCount()This is a fairly ambiguous number, but basically indicates how many rows will ultimately be inserted in the database.HistoryFlavorgetFlavor()The very broad "flavor" designator, used to get the data to the correct sink.java.lang.StringgetLoggerName()Returns the name of the logger that should be notified when something happens to this data.java.lang.StringgetSignature()The signature is a static string that describes this data as uniquely as possible.- 
Methods inherited from class java.util.ArrayListadd, add, addAll, addAll, clear, clone, contains, ensureCapacity, equals, forEach, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeIf, removeRange, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray, trimToSize
 
- 
 
- 
- 
- 
Field Detail- 
FLAVORpublic static final HistoryFlavor FLAVOR 
 
- 
 - 
Constructor Detail- 
AnnotationHistoricalDatapublic AnnotationHistoricalData() 
 - 
AnnotationHistoricalDatapublic AnnotationHistoricalData(java.util.List<Annotation> data) 
 
- 
 - 
Method Detail- 
getFlavorpublic HistoryFlavor getFlavor() Description copied from interface:HistoricalDataThe very broad "flavor" designator, used to get the data to the correct sink. That is, different sinks support different types of data, and this is used to match them up.- Specified by:
- getFlavorin interface- HistoricalData
 
 - 
getSignaturepublic java.lang.String getSignature() Description copied from interface:HistoricalDataThe signature is a static string that describes this data as uniquely as possible. This will be used to group data in the data cache (for example, when displaying quarantined data), as well as uniquely identifying cacheable schemas, etc.Basically, the golden rule is that if two pieces of data have the same signature, the came from the same place, and are going to the same place, and in theory could be grouped together (note: they won't be, that is done with the GroupableDatainterface).- Specified by:
- getSignaturein interface- HistoricalData
 
 - 
getDataCountpublic int getDataCount() Description copied from interface:HistoricalDataThis is a fairly ambiguous number, but basically indicates how many rows will ultimately be inserted in the database. Used for judging transaction size.- Specified by:
- getDataCountin interface- HistoricalData
 
 - 
getLoggerNamepublic java.lang.String getLoggerName() Description copied from interface:HistoricalDataReturns the name of the logger that should be notified when something happens to this data. If null or empty, notifications won't occur (errors, however, may still be logged to the general logger).- Specified by:
- getLoggerNamein interface- HistoricalData
 
 
- 
 
-