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

org.enodeframework.eventing.ProcessingEventProcessor.kt Maven / Gradle / Ivy

package org.enodeframework.eventing

interface ProcessingEventProcessor {
    /**
     * Process the given processingEvent.
     */
    fun process(processingEvent: ProcessingEvent)

    /**
     * Start the processor.
     */
    fun start()

    /**
     * Stop the processor.
     */
    fun stop()

    /**
     * The name of the processor
     */
    val name: String
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy