org.enodeframework.commanding.ICommandProcessor.kt 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.commanding
interface ICommandProcessor {
/**
* Process the given command.
*/
fun process(processingCommand: ProcessingCommand)
/**
* Start processor
*/
fun start()
/**
* Stop processor
*/
fun stop()
}