geronimo-metrics/src/main/java/org/apache/geronimo/microprofile/metrics/cdi/SimplyTimedInterceptor.java [63:70]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @AroundConstruct
    public Object onConstructor(final InvocationContext context) throws Exception {
        return findTimer(context.getConstructor()).time(context::proceed);
    }

    @AroundInvoke
    public Object onMethod(final InvocationContext context) throws Exception {
        return findTimer(context.getMethod()).time(context::proceed);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



geronimo-metrics/src/main/java/org/apache/geronimo/microprofile/metrics/cdi/TimedInterceptor.java [64:71]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @AroundConstruct
    public Object onConstructor(final InvocationContext context) throws Exception {
        return findTimer(context.getConstructor()).time(context::proceed);
    }

    @AroundInvoke
    public Object onMethod(final InvocationContext context) throws Exception {
        return findTimer(context.getMethod()).time(context::proceed);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



