Package com.salas.bb.core.actions

Examples of com.salas.bb.core.actions.EDTOverloadReporter


        final String watchdogsDisable = System.getProperty("watchdogs.disable");
        if (watchdogsDisable == null || !watchdogsDisable.equalsIgnoreCase("true"))
        {
            EventQueueWithWD queue = EventQueueWithWD.install();

            queue.addWatchdog(2000, new EDTOverloadReporter(Level.WARNING), false);
            queue.addWatchdog(3 * 60 * 1000, new EDTLockupHandler(), true);
        }
    }
View Full Code Here

TOP

Related Classes of com.salas.bb.core.actions.EDTOverloadReporter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.