Package io.inugami.api.processors
Interface Processor
-
- All Superinterfaces:
NamedComponent
public interface Processor extends NamedComponent
In Inugami, when a provider retrieve the data, it can invoke a Processor to manipulate and transform the data. For example, if we have a SQL provider how retrieve information from a table, the data should not be formatted directly as time serie data. In this case the Processor will transform your entity to another format.- Since:
- 6 oct. 2016
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProviderFutureResultprocess(GenericEvent event, ProviderFutureResult data)-
Methods inherited from interface io.inugami.api.tools.NamedComponent
getName
-
-
-
-
Method Detail
-
process
ProviderFutureResult process(GenericEvent event, ProviderFutureResult data) throws ProcessorException
- Throws:
ProcessorException
-
-