org.enodeframework.eventing.IProcessingEventProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enode Show documentation
Show all versions of enode Show documentation
The enodeframework core implementation.
package org.enodeframework.eventing;
public interface IProcessingEventProcessor {
/**
* Process the given processingEvent.
*/
void process(ProcessingEvent processingEvent);
/**
* Start the processor.
*/
void start();
/**
* Stop the processor.
*/
void stop();
/**
* The name of the processor
*/
String getName();
}