AggregateProcessor
interface AggregateProcessor<C : Any> : AggregateIdCapable, NamedTypedAggregate<C> , MonoMessageProcessor<C, ServerCommandExchange<*>, Mono<DomainEventStream>>
Processor for handling commands on a specific aggregate instance.
This interface defines the contract for processing commands against a particular aggregate, ensuring proper serialization and state management.
Type Parameters
C
The type of the command aggregate root.