Axon & CompletableFuture
问题 I've faced with problems when i try to use CompletableFuture with Axon. For example: CompletableFuture future = CompletableFuture.supplyAsync(() -> { log.info("Start processing target: {}", target.toString()); return new Event(); }, threadPool); future.thenAcceptAsync(event -> { log.info("Send Event"); AggregateLifecycle.apply(event); }, currentExecutor); in thenAcceptAsync - AggregateLifecycle.apply(event) has unexpected behavior. Some of my @EventSourcingHandler handlers start handling