gr.iti.mklab.sfc.processors.Processor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mklab-stream-manager Show documentation
Show all versions of mklab-stream-manager Show documentation
Monitors a set of social streams (e.g. Twitter status updates) and collects the incoming content.
The newest version!
package gr.iti.mklab.sfc.processors;
import gr.iti.mklab.framework.common.domain.Item;
import gr.iti.mklab.framework.common.domain.config.Configuration;
public abstract class Processor {
protected Configuration configuration;
public Processor(Configuration configuration) {
this.configuration = configuration;
}
public abstract void process(Item item);
}