org.enodeframework.commanding.ICommandHandlerProvider.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
import org.enodeframework.messaging.MessageHandlerData
/**
* Represents a provider to provide the command handlers.
*/
interface ICommandHandlerProvider {
/**
* Get all the handlers for the given command type.
*/
fun getHandlers(commandType: Class<*>): List>
}