All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.enodeframework.eventing.IProcessingEventProcessor Maven / Gradle / Ivy

There is a newer version: 1.1.10
Show newest version
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy