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 Summary
Modifier 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
-
acceptsData
Returns whether or not the storer can accept the specified type of data. -
isLicensedFor
Assuming the storer accepts the flavor, is it currently licensed for it? If not, the data will not be stored.
-