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 TypeMethodDescriptionboolean
acceptsData
(HistoryFlavor dataType) Returns whether or not the storer can accept the specified type of data.boolean
isLicensedFor
(HistoryFlavor dataType) Assuming the storer accepts the flavor, is it currently licensed for it? If not, the data will not be stored.void
storeData
(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.
-