AbstractCommandFunction

Constructors

Link copied to clipboard
constructor(commandAggregate: CommandAggregate<C, *>, afterCommandFunctions: List<AfterCommandFunction<C>>)

Properties

Link copied to clipboard
Link copied to clipboard
abstract val contextName: String
Link copied to clipboard
Link copied to clipboard
abstract override val name: String
Link copied to clipboard
abstract val processor: C
Link copied to clipboard
open override val processorName: String
Link copied to clipboard
open override val qualifiedName: String

The fully qualified name of the function.

Link copied to clipboard
Link copied to clipboard
abstract val supportedType: Class<*>

Message body types supported by the message function.

Functions

Link copied to clipboard
abstract fun <A : Annotation> getAnnotation(annotationClass: Class<A>): A?
Link copied to clipboard
fun NamedBoundedContext.getContextAlias(boundedContext: BoundedContext? = MetadataSearcher.metadata.contexts[contextName]): String
Link copied to clipboard
open fun handle(exchange: ServerCommandExchange<*>): Mono<DomainEventStream>
Link copied to clipboard
open operator override fun invoke(exchange: ServerCommandExchange<*>): Mono<DomainEventStream>
Link copied to clipboard
abstract fun invokeCommand(exchange: ServerCommandExchange<*>): Mono<*>
Link copied to clipboard
Link copied to clipboard
open fun isSameFunction(functionInfo: FunctionInfo): Boolean
Link copied to clipboard
Link copied to clipboard
fun FunctionInfo.toWaitSignal(id: String, commandId: String, stage: CommandStage, isLastProjection: Boolean = false, errorCode: String = ErrorCodes.SUCCEEDED, errorMsg: String = ErrorCodes.SUCCEEDED_MESSAGE, bindingErrors: List<BindingError> = emptyList(), result: Map<String, Any> = emptyMap(), signalTime: Long = System.currentTimeMillis()): WaitSignal