Interface HistoryStorer
- All Known Subinterfaces:
- DataSink,- DataStore,- StoreAndForwardEngine
- All Known Implementing Classes:
- AbstractDatasourceSink,- AbstractSink,- AggregateSink
public interface HistoryStorer
Defines a unit that can accept historical data.
- 
Method SummaryModifier and TypeMethodDescriptionbooleanacceptsData(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 Details- 
storeData- Throws:
- Exception
 
- 
acceptsDataReturns whether or not the storer can accept the specified type of data.
- 
isLicensedForAssuming the storer accepts the flavor, is it currently licensed for it? If not, the data will not be stored.
 
-