public NumbersService()

in dynamic-router-eip/src/main/java/org/apache/camel/example/springboot/numbers/service/NumbersService.java [95:107]


    public NumbersService(
            final ExampleConfig config,
            final List<RoutingParticipant> participants,
            final ProducerTemplate start,
            final ResultsService resultsService,
            final CountDownLatch countDownLatch) {
        this.startUri = config.getStartUri();
        this.participants = participants;
        this.start = start;
        this.resultsService = resultsService;
        this.countDownLatch = countDownLatch;
        this.numberOfMessages = config.getSendMessageCount();
    }