dynamic-router-eip/dynamic-router-eip-single/src/main/java/org/apache/camel/example/springboot/numbers/config/DynamicRouterComponentConfig.java [86:99]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Bean
    public ExecutorService customPool() {
        DefaultThreadPoolFactory threadPoolFactory = new DefaultThreadPoolFactory();
        threadPoolFactory.setCamelContext(camelContext);
        DefaultExecutorServiceManager executorServiceManager = new DefaultExecutorServiceManager(camelContext);
        executorServiceManager.setThreadPoolFactory(threadPoolFactory);
        return executorServiceManager.newCachedThreadPool(this, "DynamicRouterSpringBootThreadFactory");
    }

    /**
     * Creates a simple route to allow a producer to send messages through
     * the dynamic router.
     */
    @Bean
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



dynamic-router-eip/dynamic-router-eip-stack/main-router/src/main/java/org/apache/camel/example/springboot/numbers/mainrouter/config/MainRouterConfig.java [111:124]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Bean
    public ExecutorService customPool() {
        DefaultThreadPoolFactory threadPoolFactory = new DefaultThreadPoolFactory();
        threadPoolFactory.setCamelContext(camelContext);
        DefaultExecutorServiceManager executorServiceManager = new DefaultExecutorServiceManager(camelContext);
        executorServiceManager.setThreadPoolFactory(threadPoolFactory);
        return executorServiceManager.newCachedThreadPool(this, "DynamicRouterSpringBootThreadFactory");
    }

    /**
     * Creates a simple route to allow a producer to send messages through
     * the dynamic router on the routing channel.
     */
    @Bean
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



