public MyBean()

in flight-recorder/src/main/java/org/apache/camel/example/MyBean.java [26:34]


    public MyBean() {
        // force slow startup
        try {
            LOG.warn("Forcing 2 sec delay to have slow startup");
            Thread.sleep(2000);
        } catch (Exception e) {
            // ignore
        }
    }