Interface HistoryStorer
- 
- All Known Subinterfaces:
- DataSink,- DataStore,- StoreAndForwardEngine
 - All Known Implementing Classes:
- AbstractDatasourceSink,- AbstractSink,- AggregateSink
 
 public interface HistoryStorerDefines a unit that can accept historical data.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanacceptsData(HistoryFlavor dataType)Returns whether or not the storer can accept the specified type of data.booleanisLicensedFor(HistoryFlavor dataType)Assuming the storer accepts the flavor, is it currently licensed for it? If not, the data will not be stored.voidstoreData(HistoricalData data)
 
- 
- 
- 
Method Detail- 
storeDatavoid storeData(@Nullable HistoricalData data) throws java.lang.Exception- Throws:
- java.lang.Exception
 
 - 
acceptsDataboolean acceptsData(HistoryFlavor dataType) Returns whether or not the storer can accept the specified type of data.
 - 
isLicensedForboolean isLicensedFor(HistoryFlavor dataType) Assuming the storer accepts the flavor, is it currently licensed for it? If not, the data will not be stored.
 
- 
 
-