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

org.enodeframework.commanding.CommandProcessor.kt Maven / Gradle / Ivy

package org.enodeframework.commanding

interface CommandProcessor {
    /**
     * Process the given command.
     */
    fun process(processingCommand: ProcessingCommand)

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

    /**
     * Stop processor
     */
    fun stop()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy