Package org.apache.sirona.web.servlet

Examples of org.apache.sirona.web.servlet.StatusGauge


            helper.destroy();
        }
    }

    private static StatusGauge statusGauge(final String prefix, final ConcurrentMap<Integer, StatusGauge> gauges, final int status) {
        final StatusGauge gauge = gauges.get(status);
        if (gauge != null) {
            return gauge;
        }

        final StatusGauge newGauge = new StatusGauge(new Role(prefix + "-HTTP-" + Integer.toString(status), Unit.UNARY));
        final StatusGauge old = gauges.putIfAbsent(status, newGauge);
        if (old != null) {
            return old;
        }
        return newGauge;
    }
View Full Code Here

TOP

Related Classes of org.apache.sirona.web.servlet.StatusGauge

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.