org.enodeframework.commanding.ICommandExecuteContext.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 java.util.concurrent.CompletableFuture
/**
* Represents a context environment for command executor executing command.
*/
interface ICommandExecuteContext : ICommandContext, ITrackingContext {
/**
* Notify the given command is executed.
*/
fun onCommandExecutedAsync(commandResult: CommandResult): CompletableFuture
}