103104105106107108109110111112113
} private void markMeterForStatusCode(int status) { final Meter metric = metersByStatusCode.get(status); if (metric != null) { metric.mark(); } else { otherMeter.mark(); } }
106107108109110111112113114115116
} } finally { _metricsModificationLock.unlock(); } } perSymbolMeter.mark(); if (_tickMeter != null) { _tickMeter.mark(); } }