BlockingCommandBuilderRewriter
class BlockingCommandBuilderRewriter(val delegate: CommandBuilderRewriter, scheduler: Scheduler = Schedulers.boundedElastic()) : Decorator<CommandBuilderRewriter> , CommandBuilderRewriter
Decorator that executes command builder rewriting on a blocking scheduler.
This wrapper ensures that potentially blocking rewrite operations are executed on a separate thread pool to avoid blocking the reactive pipeline.
Parameters
delegate
the original rewriter to wrap
scheduler
the scheduler for executing blocking operations (default: boundedElastic)