resolveProcessor

abstract fun resolveProcessor(processor: Any): Set<MessageFunction<Any, DomainEventExchange<*>, Mono<*>>>

Resolves a processor object into a set of message functions.

This method must be implemented by subclasses to define how processors (typically annotated classes) are converted to MessageFunction instances.

Return

A set of message functions extracted from the processor

Parameters

processor

The processor object to resolve

See also