Examples of recordWorkError()


Examples of com.brienwheeler.lib.monitor.work.WorkMonitor.recordWorkError()

            Object ret = joinPoint.proceed();
            workMonitor.recordWorkOk(workName, System.currentTimeMillis() - start);
            return ret;
        }
        catch (InterruptedException e) {
            workMonitor.recordWorkError(workName, System.currentTimeMillis() - start);
            Thread.currentThread().interrupt();
            throw e;
        }
        catch (RuntimeException e) {
            workMonitor.recordWorkError(workName, System.currentTimeMillis() - start);
View Full Code Here

Examples of com.brienwheeler.lib.monitor.work.WorkMonitor.recordWorkError()

            workMonitor.recordWorkError(workName, System.currentTimeMillis() - start);
            Thread.currentThread().interrupt();
            throw e;
        }
        catch (RuntimeException e) {
            workMonitor.recordWorkError(workName, System.currentTimeMillis() - start);
            throw e;
        }
        catch (Error e) {
            workMonitor.recordWorkError(workName, System.currentTimeMillis() - start);
            throw e;
View Full Code Here

Examples of com.brienwheeler.lib.monitor.work.WorkMonitor.recordWorkError()

        catch (RuntimeException e) {
            workMonitor.recordWorkError(workName, System.currentTimeMillis() - start);
            throw e;
        }
        catch (Error e) {
            workMonitor.recordWorkError(workName, System.currentTimeMillis() - start);
            throw e;
        }
        catch (Throwable e) {
            workMonitor.recordWorkError(workName, System.currentTimeMillis() - start);
            throw new RuntimeException(e);
View Full Code Here

Examples of com.brienwheeler.lib.monitor.work.WorkMonitor.recordWorkError()

        catch (Error e) {
            workMonitor.recordWorkError(workName, System.currentTimeMillis() - start);
            throw e;
        }
        catch (Throwable e) {
            workMonitor.recordWorkError(workName, System.currentTimeMillis() - start);
            throw new RuntimeException(e);
        }
    }
}
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.