AfterCommandFunction

Represents an after-command function that executes after command processing.

This class wraps a message function with metadata about which commands it should execute for, providing ordering and decoration capabilities.

Type Parameters

C

The type of the command aggregate.

Constructors

Link copied to clipboard
constructor(metadata: AfterCommandFunctionMetadata<C>, delegate: MessageFunction<C, ServerCommandExchange<*>, Mono<*>>)

Creates a new AfterCommandFunction with the specified metadata and delegate.

Properties

Link copied to clipboard
open override val delegate: MessageFunction<C, ServerCommandExchange<*>, Mono<*>>

The underlying message function to execute.

Link copied to clipboard

The metadata describing this after-command function's configuration.