Package net.emaze.dysfunctional.dispatching.spying

Examples of net.emaze.dysfunctional.dispatching.spying.MonitoringRunnable


     * @param runnable the runnable that will be monitored
     * @param calls a value holder accumulating calls
     * @return the proxied runnable
     */
    public static Runnable monitor(Runnable runnable, AtomicLong calls) {
        return new MonitoringRunnable(runnable, calls);
    }
View Full Code Here

TOP

Related Classes of net.emaze.dysfunctional.dispatching.spying.MonitoringRunnable

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.