public void configure()

in generic-examples/master/Master.java [28:36]


  public void configure() throws Exception {

      // Write your routes here, for example:
      from("master:lock:timer:master?period=1000")
        .setBody()
          .simple("This message is printed by a single pod, even if you increase the number of replicas!")
        .to("log:info");

  }